[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / JumpThreading / thread-two-bbs-msvc.ll
blob50d5d42afd770ad063f4d5c2f10d4510c32903d1
1 ; RUN: opt < %s -jump-threading -S -verify | FileCheck %s
3 target datalayout = "e-m:w-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
4 target triple = "x86_64-pc-windows-msvc19.16.27026"
6 ; Verify that we do *not* thread any edge.  On Windows, we used to
7 ; improperly duplicate EH pads like bb_cleanup below, resulting in an
8 ; assertion failure later down the pass pipeline.
9 define void @foo([2 x i8]* %0) personality i8* bitcast (i32 ()* @baz to i8*) {
10 ; CHECK-LABEL: @foo
11 ; CHECK-NOT: bb_{{[^ ]*}}.thread:
12 entry:
13   invoke void @bar()
14           to label %bb_invoke unwind label %bb_cleanuppad
16 bb_invoke:
17   invoke void @bar()
18           to label %bb_exit unwind label %bb_cleanuppad
20 bb_cleanuppad:
21   %index = phi i64 [ 1, %bb_invoke ], [ 0, %entry ]
22   %cond1 = phi i1 [ false, %bb_invoke ], [ true, %entry ]
23   %1 = cleanuppad within none []
24   br i1 %cond1, label %bb_action, label %bb_cleanupret
26 bb_action:
27   %cond2 = icmp eq i64 %index, 0
28   br i1 %cond2, label %bb_cleanupret, label %bb_exit
30 bb_exit:
31   call void @bar()
32   ret void
34 bb_cleanupret:
35   cleanupret from %1 unwind to caller
38 declare void @bar()
39 declare i32 @baz()