diff options
author | David Srbecky <dsrbecky@google.com> | 2015-04-10 00:22:14 +0100 |
---|---|---|
committer | David Srbecky <dsrbecky@google.com> | 2015-04-10 04:44:05 +0100 |
commit | 3b9d57ab580a0593635a7dbe3dd2e2c76274f9fa (patch) | |
tree | bd33d5cbdebab7b8a55f782a06d09de48d407542 /compiler/oat_writer.h | |
parent | b536247b1ce5de640eec81dddac47802cd074363 (diff) | |
download | art-3b9d57ab580a0593635a7dbe3dd2e2c76274f9fa.tar.gz art-3b9d57ab580a0593635a7dbe3dd2e2c76274f9fa.tar.bz2 art-3b9d57ab580a0593635a7dbe3dd2e2c76274f9fa.zip |
Move DWARF related code in ElfWriter to its own file.
This is purely for organisation. The DWARF related code
is becoming more complex and I do not want to keep mixing
it with the ElfWriter. The ElfWriter probably should not
be dealing with the fine details of DWARF generation.
I intend to do much more work on DWARF in the future so
this situatuion would only get worse as the code grows.
The code could also use some refactoring and splitting.
However, I have mostly just moved it in this CL.
Change-Id: I6e3401a2b745ddf991b440ad7899ad7d4b921be6
Diffstat (limited to 'compiler/oat_writer.h')
-rw-r--r-- | compiler/oat_writer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/oat_writer.h b/compiler/oat_writer.h index b4a641146..51bc9b448 100644 --- a/compiler/oat_writer.h +++ b/compiler/oat_writer.h @@ -126,7 +126,7 @@ class OatWriter { CompiledMethod* compiled_method_; }; - const std::vector<DebugInfo>& GetCFIMethodInfo() const { + const std::vector<DebugInfo>& GetMethodDebugInfo() const { return method_info_; } |