diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2011-04-29 14:48:51 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2011-04-29 14:48:51 +0000 |
commit | 697edc89a5ff29e72c36cc18281ce7e4e3c6edc0 (patch) | |
tree | 9ed68915522afb3f1676e0e4467973e31613ba0e /llvm/lib/CodeGen/AsmPrinter/DwarfException.h | |
parent | e794e175244111127ef26f633915017e7091b2d3 (diff) | |
download | bcm5719-llvm-697edc89a5ff29e72c36cc18281ce7e4e3c6edc0.tar.gz bcm5719-llvm-697edc89a5ff29e72c36cc18281ce7e4e3c6edc0.zip |
Change DwarfCFIException's member variables to track what it actually
emmits: .cfi_personality, .cfi_lsda and the moves.
llvm-svn: 130503
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfException.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfException.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfException.h b/llvm/lib/CodeGen/AsmPrinter/DwarfException.h index 06b1de62fbd..f11164122cc 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfException.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfException.h @@ -140,17 +140,18 @@ public: }; class DwarfCFIException : public DwarfException { - /// shouldEmitTable - Per-function flag to indicate if EH tables should - /// be emitted. - bool shouldEmitTable; + /// shouldEmitPersonality - Per-function flag to indicate if .cfi_personality + /// should be emitted. + bool shouldEmitPersonality; + + /// shouldEmitLSDA - Per-function flag to indicate if .cfi_lsda + /// should be emitted. + bool shouldEmitLSDA; /// shouldEmitMoves - Per-function flag to indicate if frame moves info /// should be emitted. bool shouldEmitMoves; - /// shouldEmitTableModule - Per-module flag to indicate if EH tables - /// should be emitted. - bool shouldEmitTableModule; public: //===--------------------------------------------------------------------===// // Main entry points. |