diff options
-rw-r--r-- | llvm/test/Regression/Jello/test-call.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/Regression/Jello/test-call.ll b/llvm/test/Regression/Jello/test-call.ll index 0b5d2817b81..4c7bbaa46db 100644 --- a/llvm/test/Regression/Jello/test-call.ll +++ b/llvm/test/Regression/Jello/test-call.ll @@ -1,7 +1,7 @@ declare void %exit(int) -void %main() { - call void %exit(int 1) - ret void +int %main() { + call void %exit(int 0) + ret int 1 } |