forked from OSchip/llvm-project
Make this more likely to generate a libcall.
llvm-svn: 92387
This commit is contained in:
parent
9d44fdb397
commit
5967840a5f
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue