[llvm] r218909 - Remove unused function attribute params.
Sanjay Patel
spatel at rotateright.com
Thu Oct 2 14:12:05 PDT 2014
Author: spatel
Date: Thu Oct 2 16:12:04 2014
New Revision: 218909
URL: http://llvm.org/viewvc/llvm-project?rev=218909&view=rev
Log:
Remove unused function attribute params.
Modified:
llvm/trunk/test/Transforms/InstCombine/fmul.ll
Modified: llvm/trunk/test/Transforms/InstCombine/fmul.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/InstCombine/fmul.ll?rev=218909&r1=218908&r2=218909&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/InstCombine/fmul.ll (original)
+++ llvm/trunk/test/Transforms/InstCombine/fmul.ll Thu Oct 2 16:12:04 2014
@@ -128,7 +128,7 @@ define float @test11(float %x, float %y)
; With unsafe/fast math, sqrt(X) * sqrt(X) is just X.
declare double @llvm.sqrt.f64(double)
-define double @sqrt_squared1(double %f) #0 {
+define double @sqrt_squared1(double %f) {
%sqrt = call double @llvm.sqrt.f64(double %f)
%mul = fmul fast double %sqrt, %sqrt
ret double %mul
@@ -142,7 +142,7 @@ define double @sqrt_squared1(double %f)
; itself because it was not marked 'fast' originally.
; Thus, we have an overall fast result, but no more indication of
; 'fast'ness in the code.
-define double @sqrt_squared2(double %f) #0 {
+define double @sqrt_squared2(double %f) {
%sqrt = call double @llvm.sqrt.f64(double %f)
%mul1 = fmul fast double %sqrt, %sqrt
%mul2 = fmul double %mul1, %sqrt
More information about the llvm-commits
mailing list