diff options
author | Manman Ren <manman.ren@gmail.com> | 2013-10-11 23:58:05 +0000 |
---|---|---|
committer | Manman Ren <manman.ren@gmail.com> | 2013-10-11 23:58:05 +0000 |
commit | 4c4b69c9c8c4f5105e429e95f3ca382bdcc394ed (patch) | |
tree | f5398dcf50470931e86f36eda6b60399b1c5452e /llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h | |
parent | 3d01e4cf87f04478417b062a21de5d5b574fee48 (diff) | |
download | bcm5719-llvm-4c4b69c9c8c4f5105e429e95f3ca382bdcc394ed.tar.gz bcm5719-llvm-4c4b69c9c8c4f5105e429e95f3ca382bdcc394ed.zip |
Debug Info: remove form from function addDIEEntry.
The form must be a reference form in addDIEEntry. Which reference form to
use will be decided by the callee.
No functionality change.
llvm-svn: 192517
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h index b9ccf95bb12..43b24f720eb 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h @@ -207,7 +207,7 @@ public: /// addDIEEntry - Add a DIE attribute data and value. /// - void addDIEEntry(DIE *Die, uint16_t Attribute, uint16_t Form, DIE *Entry); + void addDIEEntry(DIE *Die, uint16_t Attribute, DIE *Entry); /// addBlock - Add block data. /// |