9 lines · c
1// REQUIRES: x86-registered-target2// RUN: %clang -cc1as -triple x86_64 %s -o - | FileCheck %s --check-prefix=ATT3// RUN: %clang -cc1as -triple x86_64 %s --output-asm-variant=1 -o - | FileCheck %s --check-prefix=INTEL4 5// ATT: movl $1, %eax6// INTEL: mov eax, 17 8mov $1, %eax9