Make testcase return 0 on success

llvm-svn: 5091
This commit is contained in:
Chris Lattner 2002-12-17 02:02:01 +00:00
parent 2e6f17f136
commit 0a9aed1a1b
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
void %main() {
int %main() {
%A = and sbyte 4, 8
%B = or sbyte %A, 7
%C = xor sbyte %B, %A
@ -12,5 +12,5 @@ void %main() {
%B = or int %A, 7
%C = xor int %B, %A
ret void
ret int 0
}