From: Chris Lattner Date: Tue, 17 Dec 2002 02:02:01 +0000 (+0000) Subject: Make testcase return 0 on success X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=5b9cd619469160946c4aeda21489f174cd6cbf9e;p=oota-llvm.git Make testcase return 0 on success git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5091 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/ExecutionEngine/test-logical.ll b/test/ExecutionEngine/test-logical.ll index 0edf0d4df89..731f8e5a97a 100644 --- a/test/ExecutionEngine/test-logical.ll +++ b/test/ExecutionEngine/test-logical.ll @@ -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 }