• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// RUN: llvm-mc -triple x86_64-apple-darwin10 %s | FileCheck %s
2
3.macro GET   var,re2g
4    movl   \var@GOTOFF(%ebx),\re2g
5.endm
6
7
8GET    is_sse, %eax
9
10// CHECK: movl	is_sse@GOTOFF(%ebx), %eax
11