diff options
author | Christopher Ferris <cferris@google.com> | 2018-10-30 16:16:45 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2018-10-30 16:16:45 +0000 |
commit | b31badf70f7734d1ef6d1a95ee73dc57ebd2b19d (patch) | |
tree | b150ea58a97519c38abf33f0654eb709d0c9846f /libunwindstack/JitDebug.cpp | |
parent | 1d0ee36de7af27ee43e5075b99e9427130a1f0f1 (diff) | |
parent | 4568f4bc0f116f097a13b1d931de93cf525ae204 (diff) |
Merge "Verify that the elf matches the expected arch."
Diffstat (limited to 'libunwindstack/JitDebug.cpp')
-rw-r--r-- | libunwindstack/JitDebug.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libunwindstack/JitDebug.cpp b/libunwindstack/JitDebug.cpp index d6af49e29..20bc4b902 100644 --- a/libunwindstack/JitDebug.cpp +++ b/libunwindstack/JitDebug.cpp @@ -141,8 +141,8 @@ uint64_t JitDebug::ReadEntry64(uint64_t* start, uint64_t* size) { return code.next; } -void JitDebug::SetArch(ArchEnum arch) { - switch (arch) { +void JitDebug::ProcessArch() { + switch (arch()) { case ARCH_X86: read_descriptor_func_ = &JitDebug::ReadDescriptor32; read_entry_func_ = &JitDebug::ReadEntry32Pack; |