[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeGen / inline-asm-output-variant.c
blob376a87675403432f276dc542e15d764c28f62403
1 // REQUIRES: x86-registered-target
2 /// AT&T input
3 // RUN: %clang_cc1 -triple x86_64 -S --output-asm-variant=0 %s -o - | FileCheck --check-prefix=ATT %s
4 // RUN: %clang_cc1 -triple x86_64 -S --output-asm-variant=1 %s -o - | FileCheck --check-prefix=INTEL %s
6 /// Intel input
7 // RUN: %clang_cc1 -triple x86_64 -S -D INTEL -mllvm -x86-asm-syntax=intel -inline-asm=intel %s -o - | FileCheck --check-prefix=INTEL %s
8 // RUN: %clang_cc1 -triple x86_64 -S -D INTEL -mllvm -x86-asm-syntax=intel -inline-asm=intel --output-asm-variant=1 %s -o - | FileCheck --check-prefix=INTEL %s
10 // ATT: movl $1, %eax
11 // ATT: movl $2, %eax
13 // INTEL: mov eax, 1
14 // INTEL: mov eax, 2
16 #ifdef INTEL
17 asm("mov eax, 1");
18 void foo() {
19 asm("mov eax, 2");
21 #else
22 asm("mov $1, %eax");
23 void foo() {
24 asm("mov $2, %eax");
26 #endif