aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/X86/X86RegisterInfo.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-08-17 22:00:08 +0000
committerChris Lattner <sabre@nondot.org>2006-08-17 22:00:08 +0000
commit5ea64fd9eb0027ad20a66ea29211eef79d8842a0 (patch)
treecf7e23de8d8fbe6719bf9f2371aacbda97de7827 /lib/Target/X86/X86RegisterInfo.cpp
parentc0431fe1ca52c5d159c604957f337aa3eb1ec3d3 (diff)
downloadexternal_llvm-5ea64fd9eb0027ad20a66ea29211eef79d8842a0.zip
external_llvm-5ea64fd9eb0027ad20a66ea29211eef79d8842a0.tar.gz
external_llvm-5ea64fd9eb0027ad20a66ea29211eef79d8842a0.tar.bz2
Constify some methods. Patch provided by Anton Vayvod, thanks!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29756 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86RegisterInfo.cpp')
-rw-r--r--lib/Target/X86/X86RegisterInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86RegisterInfo.cpp b/lib/Target/X86/X86RegisterInfo.cpp
index 760d3ff..90ca91d 100644
--- a/lib/Target/X86/X86RegisterInfo.cpp
+++ b/lib/Target/X86/X86RegisterInfo.cpp
@@ -737,7 +737,7 @@ X86RegisterInfo::getCalleeSaveRegClasses() const {
// pointer register. This is true if the function has variable sized allocas or
// if frame pointer elimination is disabled.
//
-static bool hasFP(MachineFunction &MF) {
+static bool hasFP(const MachineFunction &MF) {
return (NoFramePointerElim ||
MF.getFrameInfo()->hasVarSizedObjects() ||
MF.getInfo<X86FunctionInfo>()->getForceFramePointer());