Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Driver / masm.s
blobd08c63ac24ca4459f9073356de793e3d6a6350f8
1 // RUN: %clang -target i386-unknown-linux -masm=intel -c %s -### 2>&1 | FileCheck --check-prefix=CHECK-INTEL %s
2 // RUN: %clang -target i386-unknown-linux -masm=att -c %s -### 2>&1 | FileCheck --check-prefix=CHECK-ATT %s
3 // RUN: not %clang --target=i386-unknown-linux -c -masm=somerequired %s -### 2>&1 | FileCheck --check-prefix=CHECK-SOMEREQUIRED %s
4 // RUN: %clang -target arm-unknown-eabi -c -masm=intel %s -### 2>&1 | FileCheck --check-prefix=CHECK-ARM %s
6 // CHECK-INTEL: -x86-asm-syntax=intel
7 // CHECK-ATT: -x86-asm-syntax=att
8 // CHECK-SOMEREQUIRED: error: unsupported argument 'somerequired' to option '-masm='
9 // CHECK-ARM: warning: argument unused during compilation: '-masm=intel'
10 .text
11 mov al, 0