mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
a87210e350
appear to differ on Linux. Try to make them pass on Linux. Would be good for a Linux person to review this. llvm-svn: 119572
17 lines
390 B
LLVM
17 lines
390 B
LLVM
; RUN: llc < %s -mtriple=arm-apple-darwin | grep moveq
|
|
; RUN: llc < %s -mtriple=armv7-apple-darwin -mcpu=cortex-a8 | FileCheck %s
|
|
|
|
define i32 @f7(float %a, float %b) {
|
|
entry:
|
|
; CHECK: f7:
|
|
; CHECK: vcmpe.f32
|
|
; CHECK: vmrs apsr_nzcv, fpscr
|
|
; CHECK: movweq
|
|
; CHECK-NOT: vmrs
|
|
; CHECK: movwvs
|
|
%tmp = fcmp ueq float %a,%b
|
|
%retval = select i1 %tmp, i32 666, i32 42
|
|
ret i32 %retval
|
|
}
|
|
|