2009-09-12 02:01:28 +08:00
|
|
|
; RUN: opt < %s -instcombine -S | grep sub
|
|
|
|
; RUN: opt < %s -instcombine -S | grep add
|
2006-12-02 08:12:32 +08:00
|
|
|
|
2008-03-01 17:15:35 +08:00
|
|
|
define <4 x float> @test(<4 x float> %tmp26, <4 x float> %tmp53) {
|
|
|
|
; (X+Y)-Y != X for fp vectors.
|
2009-06-05 06:49:04 +08:00
|
|
|
%tmp64 = fadd <4 x float> %tmp26, %tmp53 ; <<4 x float>> [#uses=1]
|
|
|
|
%tmp75 = fsub <4 x float> %tmp64, %tmp53 ; <<4 x float>> [#uses=1]
|
2008-03-01 17:15:35 +08:00
|
|
|
ret <4 x float> %tmp75
|
2006-12-02 08:12:32 +08:00
|
|
|
}
|