mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
eda37b998a
... so just ensure that we pass DomTreeUpdater it into it. Fixes DomTree preservation for a large number of tests, all of which are marked as such so that they do not regress.
21 lines
450 B
LLVM
21 lines
450 B
LLVM
; RUN: opt < %s -simplifycfg -simplifycfg-require-and-preserve-domtree=1 -S | FileCheck %s
|
|
|
|
; CHECK-NOT: invoke
|
|
|
|
declare i32 @func(i8*) nounwind
|
|
|
|
define i32 @test() personality i32 (...)* @__gxx_personality_v0 {
|
|
invoke i32 @func( i8* null )
|
|
to label %Cont unwind label %Other ; <i32>:1 [#uses=0]
|
|
|
|
Cont: ; preds = %0
|
|
ret i32 0
|
|
|
|
Other: ; preds = %0
|
|
landingpad { i8*, i32 }
|
|
catch i8* null
|
|
ret i32 1
|
|
}
|
|
|
|
declare i32 @__gxx_personality_v0(...)
|