[llvm-branch-commits] [llvm-gcc-branch] r83167 - /llvm-gcc-4.2/branches/eh-experiment/gcc/llvm-convert.cpp
Eric Christopher
echristo at apple.com
Wed Sep 30 14:03:04 PDT 2009
Author: echristo
Date: Wed Sep 30 16:03:03 2009
New Revision: 83167
URL: http://llvm.org/viewvc/llvm-project?rev=83167&view=rev
Log:
Fix branches to correct targets. Should fix infinite loop problem
in unwinding.
Modified:
llvm-gcc-4.2/branches/eh-experiment/gcc/llvm-convert.cpp
Modified: llvm-gcc-4.2/branches/eh-experiment/gcc/llvm-convert.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/branches/eh-experiment/gcc/llvm-convert.cpp?rev=83167&r1=83166&r2=83167&view=diff
==============================================================================
--- llvm-gcc-4.2/branches/eh-experiment/gcc/llvm-convert.cpp (original)
+++ llvm-gcc-4.2/branches/eh-experiment/gcc/llvm-convert.cpp Wed Sep 30 16:03:03 2009
@@ -2006,6 +2006,8 @@
Args.end(), "eh_landingpad");
Builder.CreateStore(EHType, ExceptionSelectorValue);
+ Handlers.clear();
+
// We'll use Args again.
Args.clear();
More information about the llvm-branch-commits
mailing list