mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-15 05:24:01 +00:00
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
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user