summaryrefslogtreecommitdiffstats
path: root/llvm/test/BugPoint/misopt-basictest.ll
diff options
context:
space:
mode:
authorTanya Lattner <tonic@nondot.org>2008-02-17 00:15:09 +0000
committerTanya Lattner <tonic@nondot.org>2008-02-17 00:15:09 +0000
commit087ed9fcadf035b63ba8e03c99dfa5afc8a5766e (patch)
treea2bd36fdab49567f2ad3d92a9ffad47be89a2cd4 /llvm/test/BugPoint/misopt-basictest.ll
parentc36fefedf5d76346366e77240be2edef5613cc45 (diff)
downloadbcm5719-llvm-087ed9fcadf035b63ba8e03c99dfa5afc8a5766e.tar.gz
bcm5719-llvm-087ed9fcadf035b63ba8e03c99dfa5afc8a5766e.zip
Remove llvm-upgrade
llvm-svn: 47231
Diffstat (limited to 'llvm/test/BugPoint/misopt-basictest.ll')
-rw-r--r--llvm/test/BugPoint/misopt-basictest.ll16
1 files changed, 6 insertions, 10 deletions
diff --git a/llvm/test/BugPoint/misopt-basictest.ll b/llvm/test/BugPoint/misopt-basictest.ll
index 66cc53f42e0..6136e3e194f 100644
--- a/llvm/test/BugPoint/misopt-basictest.ll
+++ b/llvm/test/BugPoint/misopt-basictest.ll
@@ -1,14 +1,10 @@
-; RUN: llvm-upgrade < %s > %t1.ll
-; RUN: bugpoint %t1.ll -dce -bugpoint-deletecalls -simplifycfg
+; RUN: bugpoint %s -dce -bugpoint-deletecalls -simplifycfg
-%.LC0 = internal global [13 x sbyte] c"Hello World\0A\00"
+@.LC0 = internal global [13 x i8] c"Hello World\0A\00" ; <[13 x i8]*> [#uses=1]
-implementation
+declare i32 @printf(i8*, ...)
-declare int %printf(sbyte*, ...)
-
-int %main() {
- call int(sbyte*, ...)* %printf( sbyte* getelementptr ([13 x sbyte]* %.LC0, long 0, long 0) )
- ret int 0
+define i32 @main() {
+ call i32 (i8*, ...)* @printf( i8* getelementptr ([13 x i8]* @.LC0, i64 0, i64 0) ) ; <i32>:1 [#uses=0]
+ ret i32 0
}
-
OpenPOWER on IntegriCloud