diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-03-01 17:31:30 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-03-01 17:31:30 +0000 |
commit | f0208ed76a944774370d3f7dfed038a2c6a709b8 (patch) | |
tree | e0590f9837d4d62b34a2e39ec7df0f1144620463 | |
parent | e89025b8ceec5c8113f824d10fcb2a57d45123d8 (diff) | |
download | bcm5719-llvm-f0208ed76a944774370d3f7dfed038a2c6a709b8.tar.gz bcm5719-llvm-f0208ed76a944774370d3f7dfed038a2c6a709b8.zip |
Fix testcases from r151807.
llvm-svn: 151816
-rw-r--r-- | llvm/test/CodeGen/ARM/log2_not_readnone.ll | 4 | ||||
-rw-r--r-- | llvm/test/CodeGen/X86/log2_not_readnone.ll | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/ARM/log2_not_readnone.ll b/llvm/test/CodeGen/ARM/log2_not_readnone.ll index 8068abdff90..67d3ac6193c 100644 --- a/llvm/test/CodeGen/ARM/log2_not_readnone.ll +++ b/llvm/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/llvm/test/CodeGen/X86/log2_not_readnone.ll b/llvm/test/CodeGen/X86/log2_not_readnone.ll index 5620835d7ba..6c0a35ac0b7 100644 --- a/llvm/test/CodeGen/X86/log2_not_readnone.ll +++ b/llvm/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 } |