summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/log2_not_readnone.ll
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-03-01 17:41:19 +0000
committerChad Rosier <mcrosier@apple.com>2012-03-01 17:41:19 +0000
commitb5372769eb3fa7ba682ea0c54ba3c0bcc8e7726e (patch)
tree3e599f9e2ce9387b4ca051dc16aa85fdc882f07d /test/CodeGen/X86/log2_not_readnone.ll
parent0affe8ae9c435964789d501da70744acf931d0d9 (diff)
downloadllvm-b5372769eb3fa7ba682ea0c54ba3c0bcc8e7726e.tar.gz
llvm-b5372769eb3fa7ba682ea0c54ba3c0bcc8e7726e.tar.bz2
llvm-b5372769eb3fa7ba682ea0c54ba3c0bcc8e7726e.tar.xz
Revert r151816 as Jim has the appropriate fix.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151818 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/log2_not_readnone.ll')
-rw-r--r--test/CodeGen/X86/log2_not_readnone.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/log2_not_readnone.ll b/test/CodeGen/X86/log2_not_readnone.ll
index 6c0a35ac0b..5620835d7b 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
}