summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2006-10-11 07:10:22 +0000
committerEvan Cheng <evan.cheng@apple.com>2006-10-11 07:10:22 +0000
commitd35734bd1fde959c3f372719736c5d8899920c63 (patch)
treeb8d219eadcc0650a7c805d8dd0fc946e4a7dd41a /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
parentac72dc81f4164149e5abf0ac0f8fbe5cdb53337c (diff)
downloadbcm5719-llvm-d35734bd1fde959c3f372719736c5d8899920c63.tar.gz
bcm5719-llvm-d35734bd1fde959c3f372719736c5d8899920c63.zip
Naming consistency.
llvm-svn: 30878
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index f2e14231d4a..81473247e18 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -457,7 +457,7 @@ SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
ID.AddInteger(LD->getAddressingMode());
ID.AddInteger(LD->getExtensionType());
- ID.AddInteger(LD->getLoadVT());
+ ID.AddInteger(LD->getLoadedVT());
ID.AddPointer(LD->getSrcValue());
ID.AddInteger(LD->getSrcValueOffset());
ID.AddInteger(LD->getAlignment());
@@ -2715,7 +2715,7 @@ void SDNode::dump(const SelectionDAG *G) const {
break;
}
if (doExt)
- std::cerr << MVT::getValueTypeString(LD->getLoadVT()) << ">";
+ std::cerr << MVT::getValueTypeString(LD->getLoadedVT()) << ">";
if (LD->getAddressingMode() == ISD::PRE_INDEXED)
std::cerr << " <pre>";
OpenPOWER on IntegriCloud