diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-04-10 00:00:25 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-04-10 00:00:25 +0000 |
commit | 4226f4f0f9da548c575e6b7a423429627262529f (patch) | |
tree | b2ee759fdb70c1f5e1531eb45296e3e301d6a4e6 /include | |
parent | ee03628d9fad683197b1839e23f23057e506de99 (diff) | |
download | external_llvm-4226f4f0f9da548c575e6b7a423429627262529f.zip external_llvm-4226f4f0f9da548c575e6b7a423429627262529f.tar.gz external_llvm-4226f4f0f9da548c575e6b7a423429627262529f.tar.bz2 |
Constify getter methods.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68745 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/CodeGen/AsmPrinter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h index f0669ba..66d254e 100644 --- a/include/llvm/CodeGen/AsmPrinter.h +++ b/include/llvm/CodeGen/AsmPrinter.h @@ -162,7 +162,7 @@ namespace llvm { /// getCurrentFunctionEHName - Called to return (and cache) the /// CurrentFnEHName. /// - std::string getCurrentFunctionEHName(const MachineFunction *MF); + std::string getCurrentFunctionEHName(const MachineFunction *MF) const; protected: /// getAnalysisUsage - Record analysis usage. |