| 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: %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 |
| 5 | |
| 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 |
| 12 | |