diff options
author | Chris Lattner <sabre@nondot.org> | 2006-02-09 04:22:52 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-02-09 04:22:52 +0000 |
commit | ba97264e72ca53a673606644cc4c69c7c37c8dc5 (patch) | |
tree | 305e2ba4b194489e801db032a88e14bc3ede80ce /llvm/lib/CodeGen/MachineFunction.cpp | |
parent | 1cd22199dd07a19eabe5a5b078c720662b5af1a0 (diff) | |
download | llvm-ba97264e72ca53a673606644cc4c69c7c37c8dc5.zip llvm-ba97264e72ca53a673606644cc4c69c7c37c8dc5.tar.gz llvm-ba97264e72ca53a673606644cc4c69c7c37c8dc5.tar.bz2 |
rename fields of constant pool entries
llvm-svn: 26076
Diffstat (limited to 'llvm/lib/CodeGen/MachineFunction.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineFunction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp index 3c41dbe..94d8715 100644 --- a/llvm/lib/CodeGen/MachineFunction.cpp +++ b/llvm/lib/CodeGen/MachineFunction.cpp @@ -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"; } } |