aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/ARM/hello.ll
blob: abf6b4c0400d0eb50288cb623e990e39a4daa2d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm &&
; RUN: llvm-upgrade < %s | llvm-as | llc -mtriple=arm-linux | grep mov | wc -l | grep 1 &&
; RUN: llvm-upgrade < %s | llvm-as | llc -mtriple=arm-apple-darwin | grep mov | wc -l | grep 2

%str = internal constant [12 x sbyte] c"Hello World\00"

int %main() {
	%tmp = call int %puts( sbyte* getelementptr ([12 x sbyte]* %str, int 0, uint 0) )
	ret int 0
}

declare int %puts(sbyte*)