diff options
author | Devang Patel <dpatel@apple.com> | 2010-07-08 20:10:35 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2010-07-08 20:10:35 +0000 |
commit | 9c160e12136a02f9ccc53982f3bf152291333084 (patch) | |
tree | e627aad1aeb529fdd504a8f9e676eebfbee53659 /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | |
parent | 07c89c6b3e4ba9625b594770993321dd60e089c0 (diff) | |
download | bcm5719-llvm-9c160e12136a02f9ccc53982f3bf152291333084.tar.gz bcm5719-llvm-9c160e12136a02f9ccc53982f3bf152291333084.zip |
Reuse DIEInteger for 1. This is frequently used while emitting an attribute using dwarf::DW_FORM_flag form.
llvm-svn: 107903
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index d57115ae1dc..5a281c85174 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -263,6 +263,8 @@ class DwarfDebug { MCSymbol *DwarfDebugLocSectionSym; MCSymbol *DwarfDebugLineSectionSym, *CurrentLineSectionSym; MCSymbol *FunctionBeginSym, *FunctionEndSym; + + DIEInteger *DIEIntegerOne; private: /// getSourceDirectoryAndFileIds - Return the directory and file ids that |