brintos

brintos / llvm-project-archived public Read only

0
0
Text · 674 B · f6d3f88 Raw
11 lines · c
1// On Darwin, arch should override CPU for triple purposes2// RUN: %clang -target armv7m-apple-darwin -arch armv7m -mcpu=cortex-m4 -### -c %s 2>&1 | FileCheck -check-prefix=CHECK-V7M-DARWIN %s3// CHECK-V7M-DARWIN: "-cc1"{{.*}} "-triple" "thumbv7m-{{.*}} "-target-cpu" "cortex-m4"4 5/// -arch is unsupported for non-Darwin targets.6// RUN: not %clang --target=armv7m -arch armv7m -mcpu=cortex-m4 -### -c %s 2>&1 | FileCheck -check-prefix=ERR %s7// ERR: unsupported option '-arch' for target 'armv7m'8 9// RUN: not %clang --target=aarch64-linux-gnu -arch arm64 -### -c %s 2>&1 | FileCheck -check-prefix=ERR2 %s10// ERR2: unsupported option '-arch' for target 'aarch64-linux-gnu'11