mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
c9755c5213
Usually we wouldn't do this anyway because llvm_fenv_testexcept would return an exception, but we have seen some cases where neither errno nor fenv detect an exception on arm-linux. llvm-svn: 114893
20 lines
433 B
LLVM
20 lines
433 B
LLVM
; RUN: opt -instcombine -S < %s | FileCheck %s
|
|
|
|
; This shouldn't fold, because sin(inf) is invalid.
|
|
; CHECK: @foo
|
|
; CHECK: %t = call double @sin(double 0x7FF0000000000000)
|
|
define double @foo() {
|
|
%t = call double @sin(double 0x7FF0000000000000)
|
|
ret double %t
|
|
}
|
|
|
|
; This should fold.
|
|
; CHECK: @bar
|
|
; CHECK: ret double 0.0
|
|
define double @bar() {
|
|
%t = call double @sin(double 0.0)
|
|
ret double %t
|
|
}
|
|
|
|
declare double @sin(double)
|