[llvm-commits] CVS: llvm/include/llvm/CodeGen/DwarfWriter.h
Jim Laskey
jlaskey at apple.com
Wed Mar 1 10:20:43 PST 2006
Changes in directory llvm/include/llvm/CodeGen:
DwarfWriter.h updated: 1.27 -> 1.28
---
Log message:
Use context and not compile unit.
---
Diffs of the changes: (+2 -2)
DwarfWriter.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/include/llvm/CodeGen/DwarfWriter.h
diff -u llvm/include/llvm/CodeGen/DwarfWriter.h:1.27 llvm/include/llvm/CodeGen/DwarfWriter.h:1.28
--- llvm/include/llvm/CodeGen/DwarfWriter.h:1.27 Mon Feb 27 11:27:12 2006
+++ llvm/include/llvm/CodeGen/DwarfWriter.h Wed Mar 1 12:20:30 2006
@@ -296,13 +296,13 @@
/// NewBasicType - Creates a new basic type if necessary, then adds to the
/// owner.
/// FIXME - Should never be needed.
- DIE *NewBasicType(CompileUnit *Unit, Type *Ty);
+ DIE *NewBasicType(DIE *Context, Type *Ty);
private:
/// NewType - Create a new type DIE.
///
- DIE *DwarfWriter::NewType(CompileUnit *Unit, TypeDesc *TyDesc);
+ DIE *DwarfWriter::NewType(DIE *Context, TypeDesc *TyDesc);
/// NewCompileUnit - Create new compile unit and it's die.
///
More information about the llvm-commits
mailing list