mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-30 07:14:53 +00:00
Fix string that is being checked.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@154547 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1cc6333161
commit
55e0e43e4f
@ -1,17 +1,18 @@
|
||||
; RUN: llc < %s -march=mipsel -mcpu=mips32 | FileCheck %s
|
||||
; RUN: llc < %s -march=mipsel -mcpu=mips32 | FileCheck %s -check-prefix=NAN
|
||||
; RUN: llc < %s -march=mipsel -mcpu=mips32 -enable-no-nans-fp-math | FileCheck %s -check-prefix=NO-NAN
|
||||
|
||||
define float @foo0(i32 %a, float %d) nounwind readnone {
|
||||
entry:
|
||||
; CHECK-NOT: fabs.s
|
||||
; CHECK-NOT: neg.s
|
||||
%sub = fsub float -0.000000e+00, %d
|
||||
ret float %sub
|
||||
}
|
||||
|
||||
define double @foo1(i32 %a, double %d) nounwind readnone {
|
||||
entry:
|
||||
; CHECK: foo1
|
||||
; CHECK-NOT: fabs.d
|
||||
; CHECK: jr
|
||||
; CHECK: foo1
|
||||
; CHECK-NOT: neg.d
|
||||
; CHECK: jr
|
||||
%sub = fsub double -0.000000e+00, %d
|
||||
ret double %sub
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user