diff options
author | Chris Lattner <sabre@nondot.org> | 2004-05-28 05:02:13 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-05-28 05:02:13 +0000 |
commit | 11b9be5a1a2c3bd24c6cf4749a72c4a97c0040da (patch) | |
tree | 6a7868c61b86990534a3b94d340fe87c8dca0cc1 /lib/Transforms/Utils/LowerInvoke.cpp | |
parent | 49f61c4ea499d93f10dfe1b1da2563d4875c3f7e (diff) |
Fix one of the major things that is causing the C Backend to infinite loop
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13872 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/LowerInvoke.cpp')
-rw-r--r-- | lib/Transforms/Utils/LowerInvoke.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Transforms/Utils/LowerInvoke.cpp b/lib/Transforms/Utils/LowerInvoke.cpp index c486633a75..bde4ff56b0 100644 --- a/lib/Transforms/Utils/LowerInvoke.cpp +++ b/lib/Transforms/Utils/LowerInvoke.cpp @@ -103,6 +103,7 @@ bool LowerInvoke::doInitialization(Module &M) { PATypeHolder JBLType(StructType::get(Elements)); OT->refineAbstractTypeTo(JBLType.get()); // Complete the cycle. JBLinkTy = JBLType.get(); + M.addTypeName("llvm.sjljeh.jmpbufty", JBLinkTy); } const Type *PtrJBList = PointerType::get(JBLinkTy); |