diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-06-06 08:00:40 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-06-06 08:00:40 +0000 |
commit | f77c991d3a80e273f2df59a171857fc8646593d4 (patch) | |
tree | 314eb88c0c7e242e08a5317e8fd6abbfefdb6411 | |
parent | 1475599468ef9f58038b83c7f550553122644aa8 (diff) | |
download | bcm5719-llvm-f77c991d3a80e273f2df59a171857fc8646593d4.tar.gz bcm5719-llvm-f77c991d3a80e273f2df59a171857fc8646593d4.zip |
Return 'int 0' instead of 'void' so that the test can be seen as successful.
llvm-svn: 6654
-rw-r--r-- | llvm/test/Regression/Jello/test-setcond-fp.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Regression/Jello/test-setcond-fp.ll b/llvm/test/Regression/Jello/test-setcond-fp.ll index 9191e3fc09e..66724d89543 100644 --- a/llvm/test/Regression/Jello/test-setcond-fp.ll +++ b/llvm/test/Regression/Jello/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 } |