repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix part 1 of pr4682. PICADD is a 16-bit instruction even in thumb2 mode.
[llvm/avr.git]
/
test
/
CodeGen
/
ARM
/
fpcmp_ueq.ll
blob
3e749afb400cb55a263703e46b04fe9adc0756ae
1
; RUN: llvm-as < %s | llc -march=arm | grep moveq
2
; RUN: llvm-as < %s | llc -march=arm -mattr=+vfp2 | grep movvs
3
4
define i32 @f7(float %a, float %b) {
5
entry:
6
%tmp = fcmp ueq float %a,%b
7
%retval = select i1 %tmp, i32 666, i32 42
8
ret i32 %retval
9
}
10