blob: aebd457844866784ed2896b1577426fa4e109d77 [file] [log] [blame]
Reid Spencer69ccadd2006-12-02 04:23:10 +00001; 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'
Chris Lattneredc28272006-10-31 20:11:14 +00003; PR882
4
5target datalayout = "e-p:32:32"
6target endian = little
7target pointersize = 32
8target 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
12implementation ; Functions:
13
14void %foo() {
15entry:
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
22void %unknown_bootoption() {
23entry:
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