[llvm-commits] [llvm] r110279 - in /llvm/trunk: lib/CodeGen/LLVMTargetMachine.cpp test/CodeGen/X86/2010-08-04-MingWCrash.ll
Bill Wendling
isanbard at gmail.com
Wed Aug 4 16:36:02 PDT 2010
Author: void
Date: Wed Aug 4 18:36:02 2010
New Revision: 110279
URL: http://llvm.org/viewvc/llvm-project?rev=110279&view=rev
Log:
The lower invoke pass needs to have unreachable code elimination run after it
because it could create such things. This fixes a MingW buildbot test failure.
Added:
llvm/trunk/test/CodeGen/X86/2010-08-04-MingWCrash.ll
Modified:
llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp
Modified: llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp?rev=110279&r1=110278&r2=110279&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp (original)
+++ llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp Wed Aug 4 18:36:02 2010
@@ -288,13 +288,15 @@
// pad is shared by multiple invokes and is also a target of a normal
// edge from elsewhere.
PM.add(createSjLjEHPass(getTargetLowering()));
- PM.add(createDwarfEHPass(this, OptLevel==CodeGenOpt::None));
- break;
+ // FALLTHROUGH
case ExceptionHandling::Dwarf:
PM.add(createDwarfEHPass(this, OptLevel==CodeGenOpt::None));
break;
case ExceptionHandling::None:
PM.add(createLowerInvokePass(getTargetLowering()));
+
+ // The lower invoke pass may create unreachable code. Remove it.
+ PM.add(createUnreachableBlockEliminationPass());
break;
}
Added: llvm/trunk/test/CodeGen/X86/2010-08-04-MingWCrash.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/2010-08-04-MingWCrash.ll?rev=110279&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/X86/2010-08-04-MingWCrash.ll (added)
+++ llvm/trunk/test/CodeGen/X86/2010-08-04-MingWCrash.ll Wed Aug 4 18:36:02 2010
@@ -0,0 +1,39 @@
+; RUN: llc < %s -mtriple=i386-pc-mingw32
+
+define void @func() nounwind {
+invoke.cont:
+ %call = tail call i8* @malloc()
+ %a = invoke i32 @bar()
+ to label %bb1 unwind label %lpad
+
+bb1:
+ ret void
+
+lpad:
+ %exn = tail call i8* @llvm.eh.exception() nounwind
+ %eh.selector = tail call i32 (i8*, i8*, ...)* @llvm.eh.selector(i8* %exn, i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*), i32 1, i8* null) nounwind
+ %ehspec.fails = icmp slt i32 %eh.selector, 0
+ br i1 %ehspec.fails, label %ehspec.unexpected, label %cleanup
+
+cleanup:
+ tail call void @_Unwind_Resume_or_Rethrow(i8* %exn) noreturn nounwind
+ unreachable
+
+ehspec.unexpected:
+ tail call void @__cxa_call_unexpected(i8* %exn) noreturn nounwind
+ unreachable
+}
+
+declare noalias i8* @malloc()
+
+declare i8* @llvm.eh.exception() nounwind readonly
+
+declare i32 @__gxx_personality_v0(...)
+
+declare i32 @llvm.eh.selector(i8*, i8*, ...) nounwind
+
+declare void @_Unwind_Resume_or_Rethrow(i8*)
+
+declare void @__cxa_call_unexpected(i8*)
+
+declare i32 @bar()
More information about the llvm-commits
mailing list