1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Make this more likely to generate a libcall.

llvm-svn: 92387
This commit is contained in:
Chris Lattner 2010-01-01 03:26:51 +00:00
parent 6d58c7dd39
commit 3d38dbff2a

View File

@ -7,9 +7,8 @@ target triple = "arm-linux-gnueabi"
define double @_ZSt3powdi(double %__x, i32 %__i) {
entry:
%tmp3 = call double @llvm.powi.f64( double 0.000000e+00, i32 0 ) ; <double> [#uses=1]
store double %tmp3, double* null, align 8
unreachable
%tmp3 = call double @llvm.powi.f64( double %__x, i32 %__i )
ret double %tmp3
}
declare double @llvm.powi.f64(double, i32)