mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-14 14:24:05 +00:00
rename fields of constant pool entries
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26076 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -347,8 +347,8 @@ void MachineFrameInfo::dump(const MachineFunction &MF) const {
|
||||
|
||||
void MachineConstantPool::print(std::ostream &OS) const {
|
||||
for (unsigned i = 0, e = Constants.size(); i != e; ++i) {
|
||||
OS << " <cp #" << i << "> is" << *(Value*)Constants[i].first;
|
||||
if (Constants[i].second != 0) OS << " , align=" << Constants[i].second;
|
||||
OS << " <cp #" << i << "> is" << *(Value*)Constants[i].Val;
|
||||
OS << " , align=" << Constants[i].Alignment;
|
||||
OS << "\n";
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user