[llvm-commits] [llvm] r151816 - in /llvm/trunk/test/CodeGen: ARM/log2_not_readnone.ll X86/log2_not_readnone.ll

Chad Rosier mcrosier at apple.com
Thu Mar 1 09:31:31 PST 2012


Author: mcrosier
Date: Thu Mar  1 11:31:30 2012
New Revision: 151816

URL: http://llvm.org/viewvc/llvm-project?rev=151816&view=rev
Log:
Fix testcases from r151807.

Modified:
    llvm/trunk/test/CodeGen/ARM/log2_not_readnone.ll
    llvm/trunk/test/CodeGen/X86/log2_not_readnone.ll

Modified: llvm/trunk/test/CodeGen/ARM/log2_not_readnone.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/ARM/log2_not_readnone.ll?rev=151816&r1=151815&r2=151816&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/ARM/log2_not_readnone.ll (original)
+++ llvm/trunk/test/CodeGen/ARM/log2_not_readnone.ll Thu Mar  1 11:31:30 2012
@@ -7,9 +7,9 @@
 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
 }

Modified: llvm/trunk/test/CodeGen/X86/log2_not_readnone.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/log2_not_readnone.ll?rev=151816&r1=151815&r2=151816&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/log2_not_readnone.ll (original)
+++ llvm/trunk/test/CodeGen/X86/log2_not_readnone.ll Thu Mar  1 11:31:30 2012
@@ -7,9 +7,9 @@
 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
 }





More information about the llvm-commits mailing list