mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
df17fa8ef9
Remove && from the end of the lines to prevent tests from throwing run lines into the background. Also, clean up places where the same command is run multiple times by using a temporary file. llvm-svn: 36142
11 lines
260 B
LLVM
11 lines
260 B
LLVM
; RUN: llvm-as < %s | llc -march=arm | grep moveq
|
|
; RUN: llvm-as < %s | llc -march=arm -mattr=+vfp2 | grep movvs
|
|
|
|
define i32 @f7(float %a, float %b) {
|
|
entry:
|
|
%tmp = fcmp ueq float %a,%b
|
|
%retval = select i1 %tmp, i32 666, i32 42
|
|
ret i32 %retval
|
|
}
|
|
|