git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21155 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Andrew Lenharth 2005-04-08 16:55:15 +00:00
parent b8a5d63b18
commit a844b017a6
3 changed files with 3 additions and 3 deletions

View File

@ -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
}

View File

@ -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
}

View File

@ -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
}