blob: 4ca4c5836d4dc3efb4850a66dda2abd3fd34d99c [file] [log] [blame]
Reid Spencerd3b1f6d2007-04-15 22:20:47 +00001; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -relocation-model=static | \
2; RUN: grep {test1 \$_GV}
3; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -relocation-model=static | \
4; RUN: grep {test2 _GV}
Chris Lattneredc28272006-10-31 20:11:14 +00005; PR882
6
7target datalayout = "e-p:32:32"
8target endian = little
9target pointersize = 32
10target triple = "i686-apple-darwin9.0.0d2"
11%GV = weak global int 0 ; <int*> [#uses=2]
12%str = external global [12 x sbyte] ; <[12 x sbyte]*> [#uses=1]
13
14implementation ; Functions:
15
16void %foo() {
17entry:
18 tail call void asm sideeffect "test1 $0", "i,~{dirflag},~{fpsr},~{flags}"( int* %GV )
19 tail call void asm sideeffect "test2 ${0:c}", "i,~{dirflag},~{fpsr},~{flags}"( int* %GV )
20 ret void
21}
22
23
24void %unknown_bootoption() {
25entry:
26 call void asm sideeffect "ud2\0A\09.word ${0:c}\0A\09.long ${1:c}\0A",
27"i,i,~{dirflag},~{fpsr},~{flags}"( int 235, sbyte* getelementptr ([12 x sbyte]*
28%str, int 0, uint 0) )
29 ret void
30}
31