summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2012-11-12 21:28:10 +0000
committerAndrew Trick <atrick@apple.com>2012-11-12 21:28:10 +0000
commita7d2d564d918a9cb9105d3b2b4176b45af36a20e (patch)
tree2c05d4f5e00bd17405e1b55c3257a608bbe9e85a /include
parent86c88c938aec8006d2ce83325ec1f31e1154620b (diff)
downloadllvm-a7d2d564d918a9cb9105d3b2b4176b45af36a20e.tar.gz
llvm-a7d2d564d918a9cb9105d3b2b4176b45af36a20e.tar.bz2
llvm-a7d2d564d918a9cb9105d3b2b4176b45af36a20e.tar.xz
misched: rename interfaceto avoid gcc warnings
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167753 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Target/TargetInstrInfo.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Target/TargetInstrInfo.h b/include/llvm/Target/TargetInstrInfo.h
index 97fddeeca1..95d2b916aa 100644
--- a/include/llvm/Target/TargetInstrInfo.h
+++ b/include/llvm/Target/TargetInstrInfo.h
@@ -628,9 +628,9 @@ public:
return false;
}
- virtual bool shouldScheduleLoadsNear(MachineInstr *FirstLdSt,
- MachineInstr *SecondLdSt,
- unsigned NumLoads) const {
+ virtual bool shouldClusterLoads(MachineInstr *FirstLdSt,
+ MachineInstr *SecondLdSt,
+ unsigned NumLoads) const {
return false;
}