diff options
author | Chris Lattner <sabre@nondot.org> | 2006-03-09 17:11:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-03-09 17:11:08 +0000 |
commit | c44be2c4efc40c5326199ded5fcc70aad0537d78 (patch) | |
tree | eb186f10c6d5d798ae1458fad9e36d7469cca84a /llvm/lib/CodeGen/MachineDebugInfo.cpp | |
parent | ed7a293b444c3eff5539f98b9bbc50fba2d15e44 (diff) | |
download | bcm5719-llvm-c44be2c4efc40c5326199ded5fcc70aad0537d78.tar.gz bcm5719-llvm-c44be2c4efc40c5326199ded5fcc70aad0537d78.zip |
temporary hack to get the build working again, apparently a header
commit was forgotten
llvm-svn: 26642
Diffstat (limited to 'llvm/lib/CodeGen/MachineDebugInfo.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineDebugInfo.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/MachineDebugInfo.cpp b/llvm/lib/CodeGen/MachineDebugInfo.cpp index fa755f1923e..2c871c8b47e 100644 --- a/llvm/lib/CodeGen/MachineDebugInfo.cpp +++ b/llvm/lib/CodeGen/MachineDebugInfo.cpp @@ -653,7 +653,7 @@ TypeDesc::TypeDesc(unsigned T) , Name("") , File(NULL) , Size(0) -, Align(0) +//, Align(0) , Offset(0) {} @@ -667,7 +667,7 @@ void TypeDesc::ApplyToFields(DIVisitor *Visitor) { Visitor->Apply((DebugInfoDesc *&)File); Visitor->Apply(Line); Visitor->Apply(Size); - Visitor->Apply(Align); + //Visitor->Apply(Align); Visitor->Apply(Offset); } @@ -692,7 +692,7 @@ void TypeDesc::dump() { << "File(" << File << "), " << "Line(" << Line << "), " << "Size(" << Size << "), " - << "Align(" << Align << "), " + //<< "Align(" << Align << "), " << "Offset(" << Offset << ")\n"; } #endif |