aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/InstCombine/2006-12-01-BadFPVectorXform.ll
blob: e2cdf31e2f7cdc3e6b688bc5450fc9589ce5d498 (plain)
1
2
3
4
5
6
7
8
9
; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | grep sub
; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | grep add

<4 x float> %test(<4 x float> %tmp26, <4 x float> %tmp53) {
  ; (X+Y)-Y != X for fp vectors.
  %tmp64 = add <4 x float> %tmp26, %tmp53
  %tmp75 = sub <4 x float> %tmp64, %tmp53
  ret <4 x float> %tmp75
}