aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-08-15 20:25:44 +0000
committerBill Wendling <isanbard@gmail.com>2013-08-15 20:25:44 +0000
commit873e392ffd6701f6724e4c2a7accd0a4e1f1e0a1 (patch)
treef7b6437844d7bc75be0c60a55f5225e3da031601 /include/llvm/CodeGen
parent7d938adacc9a625b09dd1b4c0c0df0247a1b1ed2 (diff)
downloadexternal_llvm-873e392ffd6701f6724e4c2a7accd0a4e1f1e0a1.zip
external_llvm-873e392ffd6701f6724e4c2a7accd0a4e1f1e0a1.tar.gz
external_llvm-873e392ffd6701f6724e4c2a7accd0a4e1f1e0a1.tar.bz2
Make a few more things const.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188484 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
-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 186017c..460c08c 100644
--- a/include/llvm/CodeGen/MachineModuleInfo.h
+++ b/include/llvm/CodeGen/MachineModuleInfo.h
@@ -234,7 +234,7 @@ public:
/// \brief Returns a reference to a list of cfi instructions in the current
/// function's prologue. Used to construct frame maps for debug and exception
/// handling comsumers.
- const std::vector<MCCFIInstruction> &getFrameInstructions() {
+ const std::vector<MCCFIInstruction> &getFrameInstructions() const {
return FrameInstructions;
}