diff options
author | Dan Gohman <gohman@apple.com> | 2008-04-07 19:35:22 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-04-07 19:35:22 +0000 |
commit | 3bc3ddd638b3d90da4f0f59cad8c712ee8f3dd7a (patch) | |
tree | c19e32a061733e1470db7d1cc1d9e9e2e1ef1974 /llvm/lib/CodeGen/MachineInstr.cpp | |
parent | 18948355e11104bd57c8d714a1348361552ee90d (diff) | |
download | bcm5719-llvm-3bc3ddd638b3d90da4f0f59cad8c712ee8f3dd7a.tar.gz bcm5719-llvm-3bc3ddd638b3d90da4f0f59cad8c712ee8f3dd7a.zip |
Rename MemOperand to MachineMemOperand. This was suggested by
review feedback from Chris quite a while ago. No functionality
change.
llvm-svn: 49348
Diffstat (limited to 'llvm/lib/CodeGen/MachineInstr.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineInstr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineInstr.cpp b/llvm/lib/CodeGen/MachineInstr.cpp index d2aa2bb2212..6c4fb3c8340 100644 --- a/llvm/lib/CodeGen/MachineInstr.cpp +++ b/llvm/lib/CodeGen/MachineInstr.cpp @@ -693,7 +693,7 @@ void MachineInstr::print(std::ostream &OS, const TargetMachine *TM) const { if (getNumMemOperands() > 0) { OS << ", Mem:"; for (unsigned i = 0; i < getNumMemOperands(); i++) { - const MemOperand &MRO = getMemOperand(i); + const MachineMemOperand &MRO = getMemOperand(i); const Value *V = MRO.getValue(); assert((MRO.isLoad() || MRO.isStore()) && |