diff options
author | Krasimir Georgiev <krasimir@google.com> | 2018-10-16 18:50:09 +0000 |
---|---|---|
committer | Krasimir Georgiev <krasimir@google.com> | 2018-10-16 18:50:09 +0000 |
commit | 547d824da661fedaeeda3a4bcb83a3464fa1b7b9 (patch) | |
tree | 008630b0dc9e8141304feb83e81695e22d98b5fe /llvm/lib/CodeGen/AsmPrinter/EHStreamer.h | |
parent | ae4e75fd6e89cb7706b218f54ea16a0bbdb9a0c2 (diff) | |
download | bcm5719-llvm-547d824da661fedaeeda3a4bcb83a3464fa1b7b9.tar.gz bcm5719-llvm-547d824da661fedaeeda3a4bcb83a3464fa1b7b9.zip |
Revert "[WebAssembly] LSDA info generation"
This reverts commit r344575.
Newly introduced test eh-lsda.ll.test fails with use-after-free under
ASAN build.
llvm-svn: 344639
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/EHStreamer.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/EHStreamer.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/EHStreamer.h b/llvm/lib/CodeGen/AsmPrinter/EHStreamer.h index e3a6f8e9d58..b89421a1e06 100644 --- a/llvm/lib/CodeGen/AsmPrinter/EHStreamer.h +++ b/llvm/lib/CodeGen/AsmPrinter/EHStreamer.h @@ -85,10 +85,9 @@ protected: /// zero for the landing pad and the action. Calls marked 'nounwind' have /// no entry and must not be contained in the try-range of any entry - they /// form gaps in the table. Entries must be ordered by try-range address. - virtual void computeCallSiteTable( - SmallVectorImpl<CallSiteEntry> &CallSites, - const SmallVectorImpl<const LandingPadInfo *> &LandingPads, - const SmallVectorImpl<unsigned> &FirstActions); + void computeCallSiteTable(SmallVectorImpl<CallSiteEntry> &CallSites, + const SmallVectorImpl<const LandingPadInfo *> &LandingPads, + const SmallVectorImpl<unsigned> &FirstActions); /// Emit landing pads and actions. /// @@ -109,9 +108,7 @@ protected: /// found the frame is unwound and handling continues. /// 3. Type id table contains references to all the C++ typeinfo for all /// catches in the function. This tables is reversed indexed base 1. - /// - /// Returns the starting symbol of an exception table. - MCSymbol *emitExceptionTable(); + void emitExceptionTable(); virtual void emitTypeInfos(unsigned TTypeEncoding, MCSymbol *TTBaseLabel); |