X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FExecutionEngine%2Fhello.ll;h=f2c4a7f414d984a43e94f89397e8f5e723595d24;hb=e26874556b04c86bc7faee342ce69b3ec496460b;hp=1f8c77be20734c3d837a784936e794d3fbb26e1b;hpb=4373140d8a194b2e0797097667fc3b88108b1544;p=oota-llvm.git diff --git a/test/ExecutionEngine/hello.ll b/test/ExecutionEngine/hello.ll index 1f8c77be207..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*) -int %main() { - %reg210 = call int %puts( sbyte* getelementptr ([12 x sbyte]* %.LC0, long 0, long 0) ) - ret int 0 +define i32 @main() { + %reg210 = call i32 @puts( i8* getelementptr ([12 x i8]* @.LC0, i64 0, i64 0) ) ; [#uses=0] + ret i32 0 }