summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineModuleInfo.h
diff options
context:
space:
mode:
authorJakub Staszak <kubastaszak@gmail.com>2013-03-18 23:40:46 +0000
committerJakub Staszak <kubastaszak@gmail.com>2013-03-18 23:40:46 +0000
commitc2248b0e7895446cccf934b57c6aa3aa712e20d1 (patch)
tree9f960829aa8a2e8aa836b30ee7588b79561cc6e4 /include/llvm/CodeGen/MachineModuleInfo.h
parent02a2d4fb9e29f7a2b270bb23596dba02a1f79a03 (diff)
downloadllvm-c2248b0e7895446cccf934b57c6aa3aa712e20d1.tar.gz
llvm-c2248b0e7895446cccf934b57c6aa3aa712e20d1.tar.bz2
llvm-c2248b0e7895446cccf934b57c6aa3aa712e20d1.tar.xz
Add some constantness.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177356 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineModuleInfo.h')
-rw-r--r--include/llvm/CodeGen/MachineModuleInfo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/MachineModuleInfo.h b/include/llvm/CodeGen/MachineModuleInfo.h
index 1db6252ef4..a3acec8095 100644
--- a/include/llvm/CodeGen/MachineModuleInfo.h
+++ b/include/llvm/CodeGen/MachineModuleInfo.h
@@ -295,7 +295,7 @@ public:
/// isUsedFunction - Return true if the functions in the llvm.used list. This
/// does not return true for things in llvm.compiler.used unless they are also
/// in llvm.used.
- bool isUsedFunction(const Function *F) {
+ bool isUsedFunction(const Function *F) const {
return UsedFunctions.count(F);
}