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 | ca76f6f57cc50fcdbdb661ea80f7ffd42220fdbe (patch) | |
tree | 876c974fb1d61b2e0372615d1d7d8b1a7736e053 /lib/CodeGen/AsmPrinter/DwarfDebug.h | |
parent | 7db1e7a527bc74e605da6ea86eb67945d8f17b07 (diff) |
Reuse DIEInteger for 1. This is frequently used while emitting an attribute using dwarf::DW_FORM_flag form.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107903 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfDebug.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.h b/lib/CodeGen/AsmPrinter/DwarfDebug.h index d57115ae1d..5a281c8517 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/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 |