[MIParser] Set RegClassOrRegBank during instruction parsing
[llvm-complete.git] / test / Transforms / InstSimplify / require-dominator.ll
blobce24cc8a1de137bda9acc823e73a1fc924a1bd00
1 ; RUN: opt < %s -instsimplify
3 ; instsimplify pass should explicitly require DominatorTreeAnalysis
4 ; This test will segfault if DominatorTree is not available
6 target triple = "x86_64-grtev4-linux-gnu"
8 ; Function Attrs: nounwind uwtable
9 define void @foo(i16 *) #1 align 2 {
10   br i1 undef, label %exit, label %2
12 ; <label>:2:
13   %3 = tail call i8* @_Znwm(i64 56) #10
14   %4 = bitcast i8* %3 to i16*
15   %p = load i16*, i16** undef, align 8
16   %5 = icmp eq i16* %p, %4
17   br i1 %5, label %exit, label %6
19 ; <label>:6:
20   %7 = icmp eq i16* %p, null
21   br i1 %7, label %exit, label %8
23 ; <label>:8:
24   br label %exit
26 exit:
27   ret void
30 ; Function Attrs: nobuiltin
31 declare i8* @_Znwm(i64)