diff options
author | Derek Schuff <dschuff@google.com> | 2012-02-29 01:09:06 +0000 |
---|---|---|
committer | Derek Schuff <dschuff@google.com> | 2012-02-29 01:09:06 +0000 |
commit | 56b662ce0f86c6c8601089bb0903cd066a38d48e (patch) | |
tree | edaccd8708f3dc3e05cb56212b1cf754cbec21ee /llvm/tools/llvm-objdump/MCFunction.cpp | |
parent | e979eda7e0dc03aced5049aed8338b0b8fe8fec5 (diff) | |
download | bcm5719-llvm-56b662ce0f86c6c8601089bb0903cd066a38d48e.tar.gz bcm5719-llvm-56b662ce0f86c6c8601089bb0903cd066a38d48e.zip |
Make MemoryObject accessor members const again
llvm-svn: 151687
Diffstat (limited to 'llvm/tools/llvm-objdump/MCFunction.cpp')
-rw-r--r-- | llvm/tools/llvm-objdump/MCFunction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-objdump/MCFunction.cpp b/llvm/tools/llvm-objdump/MCFunction.cpp index 9a9edda753d..5c67f1b70a9 100644 --- a/llvm/tools/llvm-objdump/MCFunction.cpp +++ b/llvm/tools/llvm-objdump/MCFunction.cpp @@ -28,7 +28,7 @@ using namespace llvm; MCFunction MCFunction::createFunctionFromMC(StringRef Name, const MCDisassembler *DisAsm, - MemoryObject &Region, uint64_t Start, + const MemoryObject &Region, uint64_t Start, uint64_t End, const MCInstrAnalysis *Ana, raw_ostream &DebugOut, SmallVectorImpl<uint64_t> &Calls) { |