diff options
| author | Sanjay Patel <spatel@rotateright.com> | 2014-10-02 21:12:04 +0000 |
|---|---|---|
| committer | Sanjay Patel <spatel@rotateright.com> | 2014-10-02 21:12:04 +0000 |
| commit | 13a657819bb3a3b43503cfc61cbe5a71d3cf49c3 (patch) | |
| tree | 71c2c2b3e5f5a1c375f39efddd354ddc9bc77af7 | |
| parent | 85eb12b0001a27f6c1d8f59892edf81609f32930 (diff) | |
| download | bcm5719-llvm-13a657819bb3a3b43503cfc61cbe5a71d3cf49c3.tar.gz bcm5719-llvm-13a657819bb3a3b43503cfc61cbe5a71d3cf49c3.zip | |
Remove unused function attribute params.
llvm-svn: 218909
| -rw-r--r-- | llvm/test/Transforms/InstCombine/fmul.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Transforms/InstCombine/fmul.ll b/llvm/test/Transforms/InstCombine/fmul.ll index 3c8bab9ffb5..a776765ac2c 100644 --- a/llvm/test/Transforms/InstCombine/fmul.ll +++ b/llvm/test/Transforms/InstCombine/fmul.ll @@ -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) #0 { ; 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 |

