diff options
author | Jim Laskey <jlaskey@mac.com> | 2006-06-15 20:51:43 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2006-06-15 20:51:43 +0000 |
commit | f8a01a966120a041fe96300271573a8bf5a3e668 (patch) | |
tree | b9470b8d3bd8be4edbffa9928f0b2016e87487e5 /lib/CodeGen/MachineDebugInfo.cpp | |
parent | d5a932b92af122209bfb53fc3198698a4af18371 (diff) |
1. Support standard dwarf format (was bootstrapping in Apple format.)
2. Add vector support.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28807 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineDebugInfo.cpp')
-rw-r--r-- | lib/CodeGen/MachineDebugInfo.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/MachineDebugInfo.cpp b/lib/CodeGen/MachineDebugInfo.cpp index fcdf30d9c9..a3013e9608 100644 --- a/lib/CodeGen/MachineDebugInfo.cpp +++ b/lib/CodeGen/MachineDebugInfo.cpp @@ -817,6 +817,7 @@ void DerivedTypeDesc::dump() { CompositeTypeDesc::CompositeTypeDesc(unsigned T) : DerivedTypeDesc(T) +, IsVector(false) , Elements() {} @@ -839,6 +840,7 @@ bool CompositeTypeDesc::classof(const DebugInfoDesc *D) { void CompositeTypeDesc::ApplyToFields(DIVisitor *Visitor) { DerivedTypeDesc::ApplyToFields(Visitor); + Visitor->Apply(IsVector); Visitor->Apply(Elements); } |