mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 20:29:53 +00:00
503ff5bcee
utils/update_test_checks.py was improved with: http://reviews.llvm.org/rL265414 to CHECK-NEXT the first line of the IR function. This ensures that nothing bad has happened before that. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@265417 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
535 B
LLVM
15 lines
535 B
LLVM
; 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.
|
|
; 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
|
|
}
|