summaryrefslogtreecommitdiff
path: root/test/CodeGen/XCore/powi.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/XCore/powi.ll')
-rw-r--r--test/CodeGen/XCore/powi.ll8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/CodeGen/XCore/powi.ll b/test/CodeGen/XCore/powi.ll
index de31cbed00..3c4f097389 100644
--- a/test/CodeGen/XCore/powi.ll
+++ b/test/CodeGen/XCore/powi.ll
@@ -1,9 +1,9 @@
-; RUN: llc < %s -march=xcore > %t1.s
-; RUN: grep "bl __powidf2" %t1.s | count 1
-; RUN: grep "bl __powisf2" %t1.s | count 1
+; RUN: llc < %s -march=xcore | FileCheck %s
declare double @llvm.powi.f64(double, i32)
define double @test(double %F, i32 %power) {
+; CHECK: test:
+; CHECK: bl __powidf2
%result = call double @llvm.powi.f64(double %F, i32 %power)
ret double %result
}
@@ -11,6 +11,8 @@ define double @test(double %F, i32 %power) {
declare float @llvm.powi.f32(float, i32)
define float @testf(float %F, i32 %power) {
+; CHECK: testf:
+; CHECK: bl __powisf2
%result = call float @llvm.powi.f32(float %F, i32 %power)
ret float %result
}