repo.or.cz
/
llvm
/
stm8.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Silence -Wunused-variable in release builds.
[llvm/stm8.git]
/
test
/
CodeGen
/
Alpha
/
bic.ll
blob
9f0035097b0ef49bcba852b9be25c3ee10ff024a
1
; Make sure this testcase codegens to the bic instruction
2
; RUN: llc < %s -march=alpha | grep {bic}
3
4
define i64 @bar(i64 %x, i64 %y) {
5
entry:
6
%tmp.1 = xor i64 %x, -1 ; <i64> [#uses=1]
7
%tmp.2 = and i64 %y, %tmp.1 ; <i64> [#uses=1]
8
ret i64 %tmp.2
9
}