diff options
| author | Sanjay Patel <spatel@rotateright.com> | 2016-03-25 18:03:40 +0000 |
|---|---|---|
| committer | Sanjay Patel <spatel@rotateright.com> | 2016-03-25 18:03:40 +0000 |
| commit | cd7d3ae7cc734e18f01d498a10f298fa38bd899d (patch) | |
| tree | cf60b432af27ac088033cf93d7fc170e16c7bf82 /llvm/test/Transforms | |
| parent | d3d1179463fd14a9f453ad1ace4c65422200440c (diff) | |
| download | bcm5719-llvm-cd7d3ae7cc734e18f01d498a10f298fa38bd899d.tar.gz bcm5719-llvm-cd7d3ae7cc734e18f01d498a10f298fa38bd899d.zip | |
[InstCombine] use FileCheck for better checking
(testing script for autogeneration of check lines)
llvm-svn: 264438
Diffstat (limited to 'llvm/test/Transforms')
| -rw-r--r-- | llvm/test/Transforms/InstCombine/2006-12-01-BadFPVectorXform.ll | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/llvm/test/Transforms/InstCombine/2006-12-01-BadFPVectorXform.ll b/llvm/test/Transforms/InstCombine/2006-12-01-BadFPVectorXform.ll index 7adeb9fd960..d57245a376f 100644 --- a/llvm/test/Transforms/InstCombine/2006-12-01-BadFPVectorXform.ll +++ b/llvm/test/Transforms/InstCombine/2006-12-01-BadFPVectorXform.ll @@ -1,9 +1,14 @@ -; RUN: opt < %s -instcombine -S | grep sub -; RUN: opt < %s -instcombine -S | grep add +; NOTE: Assertions have been autogenerated by update_test_checks.py +; RUN: opt < %s -instcombine -S | FileCheck %s define <4 x float> @test(<4 x float> %tmp26, <4 x float> %tmp53) { ; (X+Y)-Y != X for fp vectors. - %tmp64 = fadd <4 x float> %tmp26, %tmp53 ; <<4 x float>> [#uses=1] - %tmp75 = fsub <4 x float> %tmp64, %tmp53 ; <<4 x float>> [#uses=1] - ret <4 x float> %tmp75 +; CHECK-LABEL: @test( +; CHECK: [[TMP64:%.*]] = fadd <4 x float> %tmp26, %tmp53 +; CHECK-NEXT: [[TMP75:%.*]] = fsub <4 x float> [[TMP64]], %tmp53 +; CHECK-NEXT: ret <4 x float> [[TMP75]] +; + %tmp64 = fadd <4 x float> %tmp26, %tmp53 + %tmp75 = fsub <4 x float> %tmp64, %tmp53 + ret <4 x float> %tmp75 } |

