[llvm-commits] CVS: llvm/test/Regression/Jello/test-setcond-fp.ll
Michael Brukman
brukman at cs.uiuc.edu
Fri Jun 6 03:01:01 PDT 2003
Changes in directory llvm/test/Regression/Jello:
test-setcond-fp.ll updated: 1.1 -> 1.2
---
Log message:
Return 'int 0' instead of 'void' so that the test can be seen as successful.
---
Diffs of the changes:
Index: llvm/test/Regression/Jello/test-setcond-fp.ll
diff -u llvm/test/Regression/Jello/test-setcond-fp.ll:1.1 llvm/test/Regression/Jello/test-setcond-fp.ll:1.2
--- llvm/test/Regression/Jello/test-setcond-fp.ll:1.1 Thu Nov 7 11:59:21 2002
+++ llvm/test/Regression/Jello/test-setcond-fp.ll Fri Jun 6 03:00:40 2003
@@ -1,5 +1,5 @@
-void %main() {
+int %main() {
%double1 = add double 0.0, 0.0
%double2 = add double 0.0, 0.0
%float1 = add float 0.0, 0.0
@@ -16,5 +16,5 @@
%test58 = setle double %double1, %double2
%test59 = setlt double %double1, %double2
%test60 = setne double %double1, %double2
- ret void
+ ret int 0
}
More information about the llvm-commits
mailing list