Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Transforms / GlobalDCE / crash-assertingvh.ll
blob08230ef55fa73d256f1260141fe4bcce12de8a28
1 ; Make sure that if a pass like jump threading populates a function analysis
2 ; like LVI with asserting handles into the body of a function, those don't begin
3 ; to assert when global DCE deletes the body of the function.
5 ; RUN: opt -disable-output < %s -passes='module(function(jump-threading),globaldce)'
6 ; RUN: opt -disable-output < %s -passes='module(rpo-function-attrs,globaldce)'
8 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
9 target triple = "x86_64-unknown-linux-gnu"
11 declare i32 @bar()
13 define internal i32 @foo() {
14 entry:
15   %call4 = call i32 @bar()
16   %cmp5 = icmp eq i32 %call4, 0
17   br i1 %cmp5, label %if.then6, label %if.end8
19 if.then6:
20   ret i32 0
22 if.end8:
23   ret i32 1