Craig Topper 545affbf79 [DAGCombiner] Use HandleSDNode to keep node alive across call to getNegatedExpression.
getNegatedExpression can delete nodes. If the first call to
getNegatedExpression produced a node that the second call also
manages to create, it might get deleted. Use a HandleSDNode to
ensure it has a use to prevent it from being deleted.

Fixes PR57658.

Reviewed By: RKSimon

Differential Revision: https://reviews.llvm.org/D133602
2022-09-09 22:02:41 -07:00

22 lines
684 B
LLVM

; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -mtriple=x86_64-unknown-linux-gnu | FileCheck %s
define <2 x double> @f(<2 x double> %I) {
; CHECK-LABEL: f:
; CHECK: # %bb.0: # %BB
; CHECK-NEXT: movapd {{.*#+}} xmm1 = [-0.0E+0,-0.0E+0]
; CHECK-NEXT: xorpd %xmm0, %xmm1
; CHECK-NEXT: mulpd %xmm0, %xmm1
; CHECK-NEXT: mulpd %xmm0, %xmm1
; CHECK-NEXT: mulpd %xmm0, %xmm0
; CHECK-NEXT: mulpd %xmm1, %xmm0
; CHECK-NEXT: retq
BB:
%F = fneg <2 x double> %I
%B3 = fmul <2 x double> %I, %F
%B1 = fmul <2 x double> %F, %B3
%B2 = fmul <2 x double> %F, %I
%B = fmul <2 x double> %B2, %B1
ret <2 x double> %B
}