X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FExecutionEngine%2Fhello.ll;h=f2c4a7f414d984a43e94f89397e8f5e723595d24;hb=c48b55a33dc5cd898dc9e58c0a1650b8f24c3879;hp=b85e3221c0e4aa40054a308086eceb232f0d0694;hpb=92ae6c23f1404c54c207f06700ea282740e37f81;p=oota-llvm.git diff --git a/test/ExecutionEngine/hello.ll b/test/ExecutionEngine/hello.ll index b85e3221c0e..f2c4a7f414d 100644 --- a/test/ExecutionEngine/hello.ll +++ b/test/ExecutionEngine/hello.ll @@ -1,11 +1,12 @@ -%.LC0 = internal global [12 x sbyte] c"Hello World\00" +; RUN: %lli %s > /dev/null +; XFAIL: arm -implementation +@.LC0 = internal global [12 x i8] c"Hello World\00" ; <[12 x i8]*> [#uses=1] -declare int %puts(sbyte*) +declare i32 @puts(i8*) -void %main() { - %reg210 = call int %puts( sbyte* getelementptr ([12 x sbyte]* %.LC0, long 0, long 0) ) - ret void +define i32 @main() { + %reg210 = call i32 @puts( i8* getelementptr ([12 x i8]* @.LC0, i64 0, i64 0) ) ; [#uses=0] + ret i32 0 }