diff options
author | Evan Cheng <evan.cheng@apple.com> | 2006-12-22 02:04:05 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2006-12-22 02:04:05 +0000 |
commit | 763550323dc0d59be9544851a89e0bec5f29a044 (patch) | |
tree | 75574286d369a43f538c875e37d52e93e99ed9ad /llvm/lib/CodeGen/MachineFunction.cpp | |
parent | 87fbf70789170d501bad964c80aa46683006b9fd (diff) | |
download | bcm5719-llvm-763550323dc0d59be9544851a89e0bec5f29a044.tar.gz bcm5719-llvm-763550323dc0d59be9544851a89e0bec5f29a044.zip |
Debug dump error.
llvm-svn: 32743
Diffstat (limited to 'llvm/lib/CodeGen/MachineFunction.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineFunction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp index 030e893f8f0..d26b3258fe8 100644 --- a/llvm/lib/CodeGen/MachineFunction.cpp +++ b/llvm/lib/CodeGen/MachineFunction.cpp @@ -466,7 +466,7 @@ void MachineConstantPool::print(std::ostream &OS) const { Constants[i].Val.MachineCPVal->print(OS); else OS << *(Value*)Constants[i].Val.ConstVal; - OS << " , offset=" << Constants[i].Offset; + OS << " , offset=" << Constants[i].getOffset(); OS << "\n"; } } |