aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-01 03:26:51 +0000
committerChris Lattner <sabre@nondot.org>2010-01-01 03:26:51 +0000
commit0fba8cf9ffbb4397d3ddbb51469c8819d0faf3cc (patch)
tree528fc89cf6572eb210c353d3d19d996bc30f52fe
parentf9ead87c681204cf86f9575fc3f08fb4acbf7899 (diff)
Make this more likely to generate a libcall.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92387 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/ARM/fpowi.ll5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/CodeGen/ARM/fpowi.ll b/test/CodeGen/ARM/fpowi.ll
index 174106bf4f..7f9d62a9e9 100644
--- a/test/CodeGen/ARM/fpowi.ll
+++ b/test/CodeGen/ARM/fpowi.ll
@@ -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)