[LV] Add test showing debug output for loops with uncountable BTCs.
[llvm-project.git] / clang / test / Driver / masm.s
blobc1c34747bcf6a8ba952dcbf74b587964fd828d86
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