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 | 0affe8ae9c435964789d501da70744acf931d0d9 (patch) | |
tree | 0dce433edfe0250a5d218485309a5edd16d284d1 /test | |
parent | b3acdcc00c9dfb01663780e858e586cc5f04423f (diff) | |
download | external_llvm-0affe8ae9c435964789d501da70744acf931d0d9.zip external_llvm-0affe8ae9c435964789d501da70744acf931d0d9.tar.gz external_llvm-0affe8ae9c435964789d501da70744acf931d0d9.tar.bz2 |
Fix testcases from r151807.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151816 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/ARM/log2_not_readnone.ll | 4 | ||||
-rw-r--r-- | test/CodeGen/X86/log2_not_readnone.ll | 4 |
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 8068abd..67d3ac6 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 5620835..6c0a35a 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 } |