diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2004-02-12 01:34:05 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-02-12 01:34:05 +0000 |
commit | 918cdd420b52a4745ce7d4495759c87fd1b32fd5 (patch) | |
tree | 4e868d89cd2463220f702609670c6857862a2129 /lib/CodeGen/InstrSched/SchedGraph.h | |
parent | cd0b3a90aa34bd42d75d8d86f74ca4972145781d (diff) |
getOpCode() --> getOpcode().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11339 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/InstrSched/SchedGraph.h')
-rw-r--r-- | lib/CodeGen/InstrSched/SchedGraph.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/InstrSched/SchedGraph.h b/lib/CodeGen/InstrSched/SchedGraph.h index 18b2a3f884..e327598bd5 100644 --- a/lib/CodeGen/InstrSched/SchedGraph.h +++ b/lib/CodeGen/InstrSched/SchedGraph.h @@ -48,7 +48,7 @@ public: // Accessor methods const MachineInstr* getMachineInstr() const { return MI; } - const MachineOpCode getOpCode() const { return MI->getOpCode(); } + const MachineOpCode getOpcode() const { return MI->getOpcode(); } bool isDummyNode() const { return (MI == NULL); } MachineBasicBlock &getMachineBasicBlock() const { return *MBB; } |