1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00
llvm-mirror/test/MC/AsmParser/macro-args.s

11 lines
192 B
ArmAsm
Raw Normal View History

// RUN: llvm-mc -triple x86_64-apple-darwin10 %s | FileCheck %s
.macro GET var,re2g
movl \var@GOTOFF(%ebx),\re2g
.endm
GET is_sse, %eax
// CHECK: movl is_sse@GOTOFF(%ebx), %eax