diff options
author | Jim Laskey <jlaskey@mac.com> | 2007-02-01 16:31:34 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2007-02-01 16:31:34 +0000 |
commit | b82313fdc21e8190768addf0f16710b94f0e1441 (patch) | |
tree | 026fec6526020c20ddecd9c5f43a216c2c2860ba /lib/CodeGen/MachineModuleInfo.cpp | |
parent | 283663a4ed18124980c1a5e3114550638115edd8 (diff) |
Support for non-landing pad exception handling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33755 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineModuleInfo.cpp')
-rw-r--r-- | lib/CodeGen/MachineModuleInfo.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CodeGen/MachineModuleInfo.cpp b/lib/CodeGen/MachineModuleInfo.cpp index 15ea9b828d..4cc2a150eb 100644 --- a/lib/CodeGen/MachineModuleInfo.cpp +++ b/lib/CodeGen/MachineModuleInfo.cpp @@ -1505,6 +1505,9 @@ void MachineModuleInfo::EndFunction() { RootScope = NULL; } + // Clean up line info. + Lines.clear(); + // Clean up frame info. FrameMoves.clear(); } |