8 lines · plain
1; RUN: llc < %s -mtriple=x86_64 | FileCheck %s --check-prefix=ATT2; RUN: llc < %s -mtriple=x86_64 -output-asm-variant=1 | FileCheck %s --check-prefix=INTEL3 4module asm "mov ($foo), %eax"5 6; ATT: movl ($foo), %eax7; INTEL: mov eax, dword ptr [$foo]8