aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/ARM/hello.ll
blob: 61354a0425cc010e374ebf7714f338a9fc41f9af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; RUN: llvm-as < %s | llc -march=arm &&
; RUN: llvm-as < %s | llc -march=arm | grep mov | wc -l | grep 1
%str = internal constant [12 x sbyte] c"Hello World\00"		; <[12 x sbyte]*> [#uses=1]

implementation   ; Functions:

int %main() {
entry:
	%tmp = call int %puts( sbyte* getelementptr ([12 x sbyte]* %str, int 0, uint 0) )		; <int> [#uses=0]
	ret int 0
}

declare int %puts(sbyte*)