Return 'int 0' instead of 'void' so that the test can be seen as successful.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6654 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2003-06-06 08:00:40 +00:00
parent a5e7f35daa
commit 62d95e8227

View File

@ -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
}