diff options
author | 2019-02-12 19:42:54 +0000 | |
---|---|---|
committer | 2019-02-12 19:42:54 +0000 | |
commit | 8f20a23a35fa6fbe4dcb4ff70268a24dc7fb2a24 (patch) | |
tree | 84dc682b40f38d0377639befe6f3d43e5655a43c /compiler/exception_test.cc | |
parent | 68efa7b1128486e08ae60cd27181645b27bbd2e4 (diff) |
Revert "Add code size to CodeInfo"
This reverts commit 68efa7b1128486e08ae60cd27181645b27bbd2e4.
Reason for revert: Breaks tests
Change-Id: I28fb143990f58e0d5f0b106bea9d9a159f19297e
Diffstat (limited to 'compiler/exception_test.cc')
-rw-r--r-- | compiler/exception_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/exception_test.cc b/compiler/exception_test.cc index f978cc62f3..d5ceafeac9 100644 --- a/compiler/exception_test.cc +++ b/compiler/exception_test.cc @@ -80,7 +80,7 @@ class ExceptionTest : public CommonRuntimeTest { stack_maps.BeginMethod(4 * sizeof(void*), 0u, 0u, 0u); stack_maps.BeginStackMapEntry(kDexPc, native_pc_offset); stack_maps.EndStackMapEntry(); - stack_maps.EndMethod(code_size); + stack_maps.EndMethod(); ScopedArenaVector<uint8_t> stack_map = stack_maps.Encode(); const size_t stack_maps_size = stack_map.size(); |