[llvm] r254318 - [SimplifyLibCalls] Remove useless bits of this tests.
Davide Italiano via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 30 11:38:35 PST 2015
Author: davide
Date: Mon Nov 30 13:38:35 2015
New Revision: 254318
URL: http://llvm.org/viewvc/llvm-project?rev=254318&view=rev
Log:
[SimplifyLibCalls] Remove useless bits of this tests.
Modified:
llvm/trunk/test/Transforms/InstCombine/log-pow-nofastmath.ll
Modified: llvm/trunk/test/Transforms/InstCombine/log-pow-nofastmath.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/InstCombine/log-pow-nofastmath.ll?rev=254318&r1=254317&r2=254318&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/InstCombine/log-pow-nofastmath.ll (original)
+++ llvm/trunk/test/Transforms/InstCombine/log-pow-nofastmath.ll Mon Nov 30 13:38:35 2015
@@ -1,9 +1,9 @@
; RUN: opt < %s -instcombine -S | FileCheck %s
-define double @mylog(double %x, double %y) #0 {
+define double @mylog(double %x, double %y) {
entry:
%pow = call double @llvm.pow.f64(double %x, double %y)
- %call = call double @log(double %pow) #0
+ %call = call double @log(double %pow)
ret double %call
}
@@ -13,9 +13,9 @@ entry:
; CHECK: ret double %call
; CHECK: }
-define double @test3(double %x) #0 {
- %call2 = call double @exp2(double %x) #0
- %call3 = call double @log(double %call2) #0
+define double @test3(double %x) {
+ %call2 = call double @exp2(double %x)
+ %call3 = call double @log(double %call2)
ret double %call3
}
@@ -25,6 +25,6 @@ define double @test3(double %x) #0 {
; CHECK: ret double %call3
; CHECK: }
-declare double @log(double) #0
+declare double @log(double)
declare double @exp2(double)
declare double @llvm.pow.f64(double, double)
More information about the llvm-commits
mailing list