projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a5e7f35
)
Return 'int 0' instead of 'void' so that the test can be seen as successful.
author
Misha Brukman
<brukman+llvm@gmail.com>
Fri, 6 Jun 2003 08:00:40 +0000
(08:00 +0000)
committer
Misha Brukman
<brukman+llvm@gmail.com>
Fri, 6 Jun 2003 08:00:40 +0000
(08:00 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6654
91177308
-0d34-0410-b5e6-
96231b3b80d8
test/ExecutionEngine/test-setcond-fp.ll
patch
|
blob
|
history
diff --git
a/test/ExecutionEngine/test-setcond-fp.ll
b/test/ExecutionEngine/test-setcond-fp.ll
index 9191e3fc09e86096fab6e3686c54679a8be76b18..66724d89543678b95a93f5ec6d45311a79e5d210 100644
(file)
--- a/
test/ExecutionEngine/test-setcond-fp.ll
+++ b/
test/ExecutionEngine/test-setcond-fp.ll
@@
-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
@@
void %main() {
%test58 = setle double %double1, %double2
%test59 = setlt double %double1, %double2
%test60 = setne double %double1, %double2
- ret
void
+ ret
int 0
}