diff options
Diffstat (limited to 'test/Driver/arm-arch-darwin.c')
-rw-r--r-- | test/Driver/arm-arch-darwin.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Driver/arm-arch-darwin.c b/test/Driver/arm-arch-darwin.c new file mode 100644 index 0000000000000..55089619d1e71 --- /dev/null +++ b/test/Driver/arm-arch-darwin.c @@ -0,0 +1,6 @@ +// On Darwin, arch should override CPU for triple purposes +// RUN: %clang -target armv7m-apple-darwin -arch armv7m -mcpu=cortex-m4 -### -c %s 2>&1 | FileCheck -check-prefix=CHECK-V7M-DARWIN %s +// CHECK-V7M-DARWIN: "-cc1"{{.*}} "-triple" "thumbv7m-{{.*}} "-target-cpu" "cortex-m4" +// RUN: %clang -target armv7m -arch armv7m -mcpu=cortex-m4 -### -c %s 2>&1 | FileCheck -check-prefix=CHECK-V7M-OVERRIDDEN %s +// CHECK-V7M-OVERRIDDEN: "-cc1"{{.*}} "-triple" "thumbv7em-{{.*}} "-target-cpu" "cortex-m4" + |