commit | 3f04773f7884c1c7b8b89dddfb177b1f41f54c56 | [log] [tgz] |
---|---|---|
author | Tanya Lattner <tonic@nondot.org> | Tue Feb 19 01:41:04 2008 +0000 |
committer | Tanya Lattner <tonic@nondot.org> | Tue Feb 19 01:41:04 2008 +0000 |
tree | 8c66730e481d8ce70c0a8e082bfdbadc0badcc4b | |
parent | 22011e90c992533411d2efc17f5efd365a636117 [diff] [blame] |
Remove llvm-upgrade and update tests. llvm-svn: 47296
diff --git a/llvm/test/CodeGen/CBackend/2004-12-28-LogicalConstantExprs.ll b/llvm/test/CodeGen/CBackend/2004-12-28-LogicalConstantExprs.ll index ebe4566..9acaa72 100644 --- a/llvm/test/CodeGen/CBackend/2004-12-28-LogicalConstantExprs.ll +++ b/llvm/test/CodeGen/CBackend/2004-12-28-LogicalConstantExprs.ll
@@ -1,5 +1,5 @@ -; RUN: llvm-upgrade < %s | llvm-as | llc -march=c +; RUN: llvm-as < %s | llc -march=c -int %foo() { - ret int and (int 123456, int cast (int()* %foo to int)) +define i32 @foo() { + ret i32 and (i32 123456, i32 ptrtoint (i32 ()* @foo to i32)) }