diff options
author | Devang Patel <dpatel@apple.com> | 2010-08-09 20:20:05 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2010-08-09 20:20:05 +0000 |
commit | b6511a36b4630f4764d73537d958eab5a5ee11c9 (patch) | |
tree | a6b3ad89f0696b00e24f5ac4364e5d5c547ffa4b /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | |
parent | 3fa110f2276d1a2f27b117630ca18b5aad8d8abe (diff) | |
download | bcm5719-llvm-b6511a36b4630f4764d73537d958eab5a5ee11c9.tar.gz bcm5719-llvm-b6511a36b4630f4764d73537d958eab5a5ee11c9.zip |
It is ok, and convenient, to pass descriptors by value.
llvm-svn: 110590
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index 5a281c85174..2915b384676 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -338,11 +338,11 @@ private: /// addSourceLine - Add location information to specified debug information /// entry. - void addSourceLine(DIE *Die, const DIVariable *V); - void addSourceLine(DIE *Die, const DIGlobalVariable *G); - void addSourceLine(DIE *Die, const DISubprogram *SP); - void addSourceLine(DIE *Die, const DIType *Ty); - void addSourceLine(DIE *Die, const DINameSpace *NS); + void addSourceLine(DIE *Die, const DIVariable V); + void addSourceLine(DIE *Die, const DIGlobalVariable G); + void addSourceLine(DIE *Die, const DISubprogram SP); + void addSourceLine(DIE *Die, const DIType Ty); + void addSourceLine(DIE *Die, const DINameSpace NS); /// addAddress - Add an address attribute to a die based on the location /// provided. |