summaryrefslogtreecommitdiff
path: root/runtime/stack_map.cc
diff options
context:
space:
mode:
author David Srbecky <dsrbecky@google.com> 2018-06-22 23:59:24 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2018-06-22 23:59:24 +0000
commitcca7cb9ffa56d8ab8fd0c5997c8bfd965d7426c1 (patch)
treec577edade71c41eb35bd349d63fa1bc097a3f493 /runtime/stack_map.cc
parentaccb14cc7dac2443020fd44c9391c94673d78a4b (diff)
parenta45a85c61acbcc4ca4046619b7a98635b32e7622 (diff)
Merge "Ensure that BitTableAccessor refers to non-null table."
Diffstat (limited to 'runtime/stack_map.cc')
-rw-r--r--runtime/stack_map.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/stack_map.cc b/runtime/stack_map.cc
index f9e2d27439..7f7f6fce0a 100644
--- a/runtime/stack_map.cc
+++ b/runtime/stack_map.cc
@@ -61,7 +61,7 @@ StackMap CodeInfo::GetStackMapForNativePcOffset(uint32_t pc, InstructionSet isa)
return *it;
}
}
- return StackMap();
+ return stack_maps_.GetInvalidRow();
}
// Scan backward to determine dex register locations at given stack map.