Revert r151816 as Jim has the appropriate fix.
authorChad Rosier <mcrosier@apple.com>
Thu, 1 Mar 2012 17:41:19 +0000 (17:41 +0000)
committerChad Rosier <mcrosier@apple.com>
Thu, 1 Mar 2012 17:41:19 +0000 (17:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151818 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/ARM/log2_not_readnone.ll
test/CodeGen/X86/log2_not_readnone.ll

index 67d3ac6193c639821117d5dac267b09c890743d3..8068abdff908370f482bef97d6458ea484e4a314 100644 (file)
@@ -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
 }
index 6c0a35ac0b74d55787920f14ef7642d39be04bdd..5620835d7baf6f9bf34d1a00405448e202ef6bc9 100644 (file)
@@ -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
 }