blob: d49480019c7fa7246f07cb1a7479d47393159c8c [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-as < %s | llc -march=arm
2; RUN: llvm-as < %s | llc -mtriple=arm-linux-gnueabi | grep mov | wc -l | grep 1
3; RUN: llvm-as < %s | llc -mtriple=arm-linux-gnu --disable-fp-elim | \
4; RUN: grep mov | wc -l | grep 3
5; RUN: llvm-as < %s | llc -mtriple=arm-apple-darwin | grep mov | wc -l | grep 2
6
7@str = internal constant [12 x i8] c"Hello World\00"
8
9define i32 @main() {
10 %tmp = call i32 @puts( i8* getelementptr ([12 x i8]* @str, i32 0, i64 0) ) ; <i32> [#uses=0]
11 ret i32 0
12}
13
14declare i32 @puts(i8*)