forked from OSchip/llvm-project
Fix build breakage from r337562
I changed a variable's type from pointer to reference, but forgot to update the assert-only code. llvm-svn: 337564
This commit is contained in:
parent
25802ac9fd
commit
0120691f53
|
@ -698,12 +698,12 @@ void DWARF5AccelTableStaticData::print(raw_ostream &OS) const {
|
|||
}
|
||||
|
||||
void AppleAccelTableOffsetData::print(raw_ostream &OS) const {
|
||||
OS << " Offset: " << Die->getOffset() << "\n";
|
||||
OS << " Offset: " << Die.getOffset() << "\n";
|
||||
}
|
||||
|
||||
void AppleAccelTableTypeData::print(raw_ostream &OS) const {
|
||||
OS << " Offset: " << Die->getOffset() << "\n";
|
||||
OS << " Tag: " << dwarf::TagString(Die->getTag()) << "\n";
|
||||
OS << " Offset: " << Die.getOffset() << "\n";
|
||||
OS << " Tag: " << dwarf::TagString(Die.getTag()) << "\n";
|
||||
}
|
||||
|
||||
void AppleAccelTableStaticOffsetData::print(raw_ostream &OS) const {
|
||||
|
|
Loading…
Reference in New Issue