mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
de89228dfb
Change `llc` and `opt` to run `verifyModule()`. This ensures that we check the full module before `FunctionPass::doInitialization()` ever gets called (I was getting crashes in `DwarfDebug` instead of verifier failures when testing a WIP patch that checks operands of compile units). In `opt`, also move up debug-info-stripping so that it still runs before verification. There was a fair bit of broken code that was sitting in tree. Interestingly, some were cases of a `select` that referred to itself in `-instcombine` tests (apparently an intermediate result). I split them off to `*-noverify.ll` tests with RUN lines like this: opt < %s -S -disable-verify -instcombine | opt -S | FileCheck %s This avoids verifying the input file (so we can get the broken code into `-instcombine), but still verifies the output with a second call to `opt` (to verify that `-instcombine` will clean it up like it should). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@233432 91177308-0d34-0410-b5e6-96231b3b80d8
26 lines
677 B
LLVM
26 lines
677 B
LLVM
; This testcase was reduced from Shootout-C++/reversefile.cpp by bugpoint
|
|
|
|
; RUN: opt < %s -lowerinvoke -disable-output
|
|
|
|
declare void @baz()
|
|
|
|
declare void @bar()
|
|
|
|
define void @foo() {
|
|
then:
|
|
invoke void @baz( )
|
|
to label %invoke_cont.0 unwind label %try_catch
|
|
invoke_cont.0: ; preds = %then
|
|
invoke void @bar( )
|
|
to label %try_exit unwind label %try_catch
|
|
try_catch: ; preds = %invoke_cont.0, %then
|
|
%__tmp.0 = phi i32* [ null, %invoke_cont.0 ], [ null, %then ] ; <i32*> [#uses=0]
|
|
%res = landingpad { i8* } personality i32 (...)* @__gxx_personality_v0
|
|
cleanup
|
|
ret void
|
|
try_exit: ; preds = %invoke_cont.0
|
|
ret void
|
|
}
|
|
|
|
declare i32 @__gxx_personality_v0(...)
|