diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2005-04-08 16:55:15 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2005-04-08 16:55:15 +0000 |
commit | a844b017a6a30ba0a502959371bad040d7374b77 (patch) | |
tree | 000c365146486b3e3361f2514c9b876d477aa8c3 | |
parent | b8a5d63b187b411e8bc9703233ee42d6ccd05f6c (diff) |
oops
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21155 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/Alpha/bic.ll | 2 | ||||
-rw-r--r-- | test/CodeGen/Alpha/eqv.ll | 2 | ||||
-rw-r--r-- | test/CodeGen/Alpha/ornot.ll | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/Alpha/bic.ll b/test/CodeGen/Alpha/bic.ll index 581fc61c68..46e0d88bd8 100644 --- a/test/CodeGen/Alpha/bic.ll +++ b/test/CodeGen/Alpha/bic.ll @@ -6,6 +6,6 @@ implementation ; Functions: long %bar(long %x, long %y) { entry: %tmp.1 = xor long %x, -1 ; <long> [#uses=1] - %tmp.2 = and long %y, long %tmp.1 + %tmp.2 = and long %y, %tmp.1 ret long %tmp.2 } diff --git a/test/CodeGen/Alpha/eqv.ll b/test/CodeGen/Alpha/eqv.ll index 1cc397e640..2358c92f49 100644 --- a/test/CodeGen/Alpha/eqv.ll +++ b/test/CodeGen/Alpha/eqv.ll @@ -6,6 +6,6 @@ implementation ; Functions: long %bar(long %x, long %y) { entry: %tmp.1 = xor long %x, -1 ; <long> [#uses=1] - %tmp.2 = xor long %y, long %tmp.1 + %tmp.2 = xor long %y, %tmp.1 ret long %tmp.2 } diff --git a/test/CodeGen/Alpha/ornot.ll b/test/CodeGen/Alpha/ornot.ll index c92c3d5a18..1ab30a6cb9 100644 --- a/test/CodeGen/Alpha/ornot.ll +++ b/test/CodeGen/Alpha/ornot.ll @@ -6,6 +6,6 @@ implementation ; Functions: long %bar(long %x, long %y) { entry: %tmp.1 = xor long %x, -1 ; <long> [#uses=1] - %tmp.2 = or long %y, long %tmp.1 + %tmp.2 = or long %y, %tmp.1 ret long %tmp.2 } |