
POWER Darwin support in the backend has been removed for some time: https://discourse.llvm.org/t/rfc-remove-darwin-support-from-power-backends but Clang still has the TargetInfo and other remnants lying around. This patch does some cleanup and removes those and other related frontend support still remaining. We adjust any tests using the triple to either remove the test if unneeded or switch to another Power triple. Reviewed By: MaskRay, nemanjai Differential Revision: https://reviews.llvm.org/D146459
6 lines
246 B
C
6 lines
246 B
C
// RUN: %clang -target i386-unknown-unknown -m64 -v 2> %t
|
|
// RUN: grep 'Target: x86_64-unknown-unknown' %t
|
|
|
|
// RUN: %clang -target x86_64-apple-macos11 -arch arm64 -v 2>&1 | FileCheck --check-prefix=ARM64 %s
|
|
// ARM64: Target: arm64-apple-macos11
|