brintos

brintos / llvm-project-archived public Read only

0
0
Text · 250 B · cc649f2 Raw
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