1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-24 05:23:45 +02:00
llvm-mirror/test/Transforms/InstCombine/2006-12-01-BadFPVectorXform.ll

15 lines
535 B
LLVM
Raw Normal View History

; NOTE: Assertions have been autogenerated by update_test_checks.py
; RUN: opt < %s -instcombine -S | FileCheck %s
2006-12-02 01:12:32 +01:00
define <4 x float> @test(<4 x float> %tmp26, <4 x float> %tmp53) {
; (X+Y)-Y != X for fp vectors.
; CHECK-LABEL: @test(
; CHECK-NEXT: [[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
2006-12-02 01:12:32 +01:00
}