From 2913f500fa5e7e354b8b61e2040e7d40cbbfdec7 Mon Sep 17 00:00:00 2001 From: Chad Rosier Date: Thu, 1 Mar 2012 17:41:19 +0000 Subject: [PATCH] Revert r151816 as Jim has the appropriate fix. llvm-svn: 151818 --- llvm/test/CodeGen/ARM/log2_not_readnone.ll | 4 ++-- 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 67d3ac6193c6..8068abdff908 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 6c0a35ac0b74..5620835d7baf 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 }