commit | 5b9cd619469160946c4aeda21489f174cd6cbf9e | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Tue Dec 17 02:02:01 2002 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Tue Dec 17 02:02:01 2002 +0000 |
tree | adea246f770433e8a149c2ac518d887c442515d9 | |
parent | 3bd940934976e55a3bfe604081423881c96b7081 [diff] [blame] |
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 0edf0d4..731f8e5 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 @@ %B = or int %A, 7 %C = xor int %B, %A - ret void + ret int 0 }