[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / NewGVN / todo-pr37121-seens-this-value-a-lot.ll
blob9da4245fe24d3e36b29294d9e9251f8974f717d7
1 ; REQUIRES: asserts
3 ; RUN: opt -newgvn -S %s | FileCheck %s
5 ; XFAIL: *
7 ; TODO: Current NewGVN crashes on the function below. See PR37121.
9 define hidden void @foo() {
10 top:
11   %.promoted = load i8, i8* undef, align 8
12   br label %if
14 ;; This is really a multi-valued phi, because the phi is defined by an expression of the phi.
15 ;; This means that we can't propagate the value over the backedge, because we'll just cycle
16 ;; through every value.
18 if:                                               ; preds = %if, %top
19   %0 = phi i8 [ %1, %if ], [ %.promoted, %top ]
20   %1 = xor i8 %0, undef
21   br i1 false, label %L50, label %if
23 L50:                                              ; preds = %if
24   %.lcssa = phi i8 [ %1, %if ]
25   store i8 %.lcssa, i8* undef, align 8
26   ret void