diff options
author | Chris Lattner <sabre@nondot.org> | 2006-03-09 17:48:46 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-03-09 17:48:46 +0000 |
commit | 2695de410d1d055ecc1b6eb6fea965f06598ad00 (patch) | |
tree | 9a47631d7fc2c583847234214cf93e84178f36e7 /lib/CodeGen/MachineDebugInfo.cpp | |
parent | d26b8f97c44de6c32f192879db7b2976c288cb0c (diff) |
back out my previous hack
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26650 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 2c871c8b47..fa755f1923 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 |