[llvm-commits] CVS: llvm/test/Regression/Jello/hello2.ll simplesttest.ll
Chris Lattner
lattner at cs.uiuc.edu
Sat Jul 26 19:29:00 PDT 2003
Changes in directory llvm/test/Regression/Jello:
hello2.ll added (r1.1)
simplesttest.ll updated: 1.3 -> 1.4
---
Log message:
Somehow "simplest" test became a hello world test. Rectify this.
---
Diffs of the changes:
Index: llvm/test/Regression/Jello/hello2.ll
diff -c /dev/null llvm/test/Regression/Jello/hello2.ll:1.1
*** /dev/null Sat Jul 26 19:28:20 2003
--- llvm/test/Regression/Jello/hello2.ll Sat Jul 26 19:28:10 2003
***************
*** 0 ****
--- 1,19 ----
+
+ %X = global int 7
+ %msg = internal global [13 x sbyte] c"Hello World\0A\00"
+
+
+ implementation
+
+ declare void %printf([13 x sbyte]*)
+
+ void %bar() {
+ call void %printf([13 x sbyte]* %msg)
+ ret void
+ }
+
+ int %main() {
+ call void %bar()
+ ret int 0
+ }
+
Index: llvm/test/Regression/Jello/simplesttest.ll
diff -u llvm/test/Regression/Jello/simplesttest.ll:1.3 llvm/test/Regression/Jello/simplesttest.ll:1.4
--- llvm/test/Regression/Jello/simplesttest.ll:1.3 Wed Dec 4 17:58:41 2002
+++ llvm/test/Regression/Jello/simplesttest.ll Sat Jul 26 19:28:10 2003
@@ -1,19 +1,7 @@
-%X = global int 7
-%msg = internal global [13 x sbyte] c"Hello World\0A\00"
-
-
implementation
-declare void %printf([13 x sbyte]*)
-
-void %bar() {
- call void %printf([13 x sbyte]* %msg)
- ret void
-}
-
int %main() {
- call void %bar()
ret int 0
}
More information about the llvm-commits
mailing list