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 | 8bf586f3056df3bbbd40d324a207736e00bb70c8 (patch) | |
tree | 99832aa962121aa31ff94d4af3576d35748275ad /lib/CodeGen/MachineDebugInfo.cpp | |
parent | 13beebb25bc50ec969afcd7979108d2da7562b64 (diff) |
temporary hack to get the build working again, apparently a header
commit was forgotten
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26642 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineDebugInfo.cpp')
-rw-r--r-- | lib/CodeGen/MachineDebugInfo.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/CodeGen/MachineDebugInfo.cpp b/lib/CodeGen/MachineDebugInfo.cpp index fa755f1923..2c871c8b47 100644 --- a/lib/CodeGen/MachineDebugInfo.cpp +++ b/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 |