diff options
author | Jim Grosbach <grosbach@apple.com> | 2009-09-01 18:55:08 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2009-09-01 18:55:08 +0000 |
commit | ee793a6c197b2cccfee96c6da1bbe6a2048830cc (patch) | |
tree | 1d53a23c5593ee425c1db029489bd37886f034b3 /lib/CodeGen/AsmPrinter/DwarfException.cpp | |
parent | da230cb876edf0d4fa8eefc289b8addfb722cd07 (diff) |
reduce size of SmallString to something more reasonable
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80710 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfException.cpp')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfException.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfException.cpp b/lib/CodeGen/AsmPrinter/DwarfException.cpp index 8e0485e8cf..2b1a44f674 100644 --- a/lib/CodeGen/AsmPrinter/DwarfException.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfException.cpp @@ -601,7 +601,7 @@ void DwarfException::EmitExceptionTable() { EmitLabel("exception", SubprogramCount); if (MAI->getExceptionHandlingType() == ExceptionHandling::SjLj) { - SmallString<256> LSDAName; + SmallString<16> LSDAName; raw_svector_ostream(LSDAName) << MAI->getPrivateGlobalPrefix() << "_LSDA_" << Asm->getFunctionNumber(); O << LSDAName.str() << ":\n"; |