Use the llvm-upgrade program to upgrade llvm assembly.
[oota-llvm.git] / test / CodeGen / X86 / asm-global-imm.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -relocation-model=static | grep 'test1 $_GV' &&
2 ; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -relocation-model=static | grep 'test2 _GV'
3 ; PR882
4
5 target datalayout = "e-p:32:32"
6 target endian = little
7 target pointersize = 32
8 target triple = "i686-apple-darwin9.0.0d2"
9 %GV = weak global int 0         ; <int*> [#uses=2]
10 %str = external global [12 x sbyte]             ; <[12 x sbyte]*> [#uses=1]
11
12 implementation   ; Functions:
13
14 void %foo() {
15 entry:
16         tail call void asm sideeffect "test1 $0", "i,~{dirflag},~{fpsr},~{flags}"( int* %GV )
17         tail call void asm sideeffect "test2 ${0:c}", "i,~{dirflag},~{fpsr},~{flags}"( int* %GV )
18         ret void
19 }
20
21
22 void %unknown_bootoption() {
23 entry:
24         call void asm sideeffect "ud2\0A\09.word ${0:c}\0A\09.long ${1:c}\0A",
25 "i,i,~{dirflag},~{fpsr},~{flags}"( int 235, sbyte* getelementptr ([12 x sbyte]*
26 %str, int 0, uint 0) )
27         ret void
28 }
29