llvm-svn: 21155
This commit is contained in:
Andrew Lenharth 2005-04-08 16:55:15 +00:00
parent 3ae7f6c9ef
commit a77ebf3d85
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
}