From a77ebf3d85520d1cb87b55662da601659cdbfa5a Mon Sep 17 00:00:00 2001 From: Andrew Lenharth Date: Fri, 8 Apr 2005 16:55:15 +0000 Subject: [PATCH] oops llvm-svn: 21155 --- test/Regression/CodeGen/Alpha/bic.ll | 2 +- test/Regression/CodeGen/Alpha/eqv.ll | 2 +- test/Regression/CodeGen/Alpha/ornot.ll | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/Regression/CodeGen/Alpha/bic.ll b/test/Regression/CodeGen/Alpha/bic.ll index 581fc61c689..46e0d88bd8d 100644 --- a/test/Regression/CodeGen/Alpha/bic.ll +++ b/test/Regression/CodeGen/Alpha/bic.ll @@ -6,6 +6,6 @@ implementation ; Functions: long %bar(long %x, long %y) { entry: %tmp.1 = xor long %x, -1 ; [#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/Regression/CodeGen/Alpha/eqv.ll b/test/Regression/CodeGen/Alpha/eqv.ll index 1cc397e640c..2358c92f494 100644 --- a/test/Regression/CodeGen/Alpha/eqv.ll +++ b/test/Regression/CodeGen/Alpha/eqv.ll @@ -6,6 +6,6 @@ implementation ; Functions: long %bar(long %x, long %y) { entry: %tmp.1 = xor long %x, -1 ; [#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/Regression/CodeGen/Alpha/ornot.ll b/test/Regression/CodeGen/Alpha/ornot.ll index c92c3d5a18d..1ab30a6cb9c 100644 --- a/test/Regression/CodeGen/Alpha/ornot.ll +++ b/test/Regression/CodeGen/Alpha/ornot.ll @@ -6,6 +6,6 @@ implementation ; Functions: long %bar(long %x, long %y) { entry: %tmp.1 = xor long %x, -1 ; [#uses=1] - %tmp.2 = or long %y, long %tmp.1 + %tmp.2 = or long %y, %tmp.1 ret long %tmp.2 }