aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/CodeGen/ARM/log2_not_readnone.ll4
-rw-r--r--test/CodeGen/X86/log2_not_readnone.ll4
2 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/ARM/log2_not_readnone.ll b/test/CodeGen/ARM/log2_not_readnone.ll
index 8068abdff9..67d3ac6193 100644
--- a/test/CodeGen/ARM/log2_not_readnone.ll
+++ b/test/CodeGen/ARM/log2_not_readnone.ll
@@ -7,9 +7,9 @@ declare double @log2(double)
declare double @exp2(double)
define void @f() {
- ; CHECK: bl log2
+ ; CHECK: bl _log2
%1 = call double @log2(double 0.000000e+00)
- ; CHECK: bl exp2
+ ; CHECK: bl _exp2
%2 = call double @exp2(double 0.000000e+00)
ret void
}
diff --git a/test/CodeGen/X86/log2_not_readnone.ll b/test/CodeGen/X86/log2_not_readnone.ll
index 5620835d7b..6c0a35ac0b 100644
--- a/test/CodeGen/X86/log2_not_readnone.ll
+++ b/test/CodeGen/X86/log2_not_readnone.ll
@@ -7,9 +7,9 @@ declare double @log2(double)
declare double @exp2(double)
define void @f() {
- ; CHECK: calll log2
+ ; CHECK: calll _log2
%1 = call double @log2(double 0.000000e+00)
- ; CHECK: calll exp2
+ ; CHECK: calll _exp2
%2 = call double @exp2(double 0.000000e+00)
ret void
}