From a844b017a6a30ba0a502959371bad040d7374b77 Mon Sep 17 00:00:00 2001 From: Andrew Lenharth Date: Fri, 8 Apr 2005 16:55:15 +0000 Subject: [PATCH] oops git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21155 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/Alpha/bic.ll | 2 +- test/CodeGen/Alpha/eqv.ll | 2 +- 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 581fc61c689..46e0d88bd8d 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 ; [#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 1cc397e640c..2358c92f494 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 ; [#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 c92c3d5a18d..1ab30a6cb9c 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 ; [#uses=1] - %tmp.2 = or long %y, long %tmp.1 + %tmp.2 = or long %y, %tmp.1 ret long %tmp.2 } -- 2.34.1