commit | 5f4b355f209c772f438d33f3e60c04403d5462eb | [log] [tgz] |
---|---|---|
author | Tanya Lattner <tonic@nondot.org> | Mon Mar 10 07:21:50 2008 +0000 |
committer | Tanya Lattner <tonic@nondot.org> | Mon Mar 10 07:21:50 2008 +0000 |
tree | 25f6441aedb4ae5e89993b0ebaca6817ef24acd2 | |
parent | b5d11980d9c54e4a0ebb3873ef89054726643658 [diff] [blame] |
Remove llvm-upgrade and update tests. llvm-svn: 48137
diff --git a/llvm/test/ExecutionEngine/simplesttest.ll b/llvm/test/ExecutionEngine/simplesttest.ll index 1f578d2..82e8a2d 100644 --- a/llvm/test/ExecutionEngine/simplesttest.ll +++ b/llvm/test/ExecutionEngine/simplesttest.ll
@@ -1,10 +1,7 @@ -; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc +; RUN: llvm-as < %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null - -implementation - -int %main() { - ret int 0 +define i32 @main() { + ret i32 0 }