getOpCode() --> getOpcode().
llvm-svn: 11339
diff --git a/llvm/lib/CodeGen/InstrSched/SchedGraph.h b/llvm/lib/CodeGen/InstrSched/SchedGraph.h
index 18b2a3f..e327598 100644
--- a/llvm/lib/CodeGen/InstrSched/SchedGraph.h
+++ b/llvm/lib/CodeGen/InstrSched/SchedGraph.h
@@ -48,7 +48,7 @@
// 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; }