diff options
Diffstat (limited to 'runtime/art_method.h')
-rw-r--r-- | runtime/art_method.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/art_method.h b/runtime/art_method.h index ee11328385..186ff7e45e 100644 --- a/runtime/art_method.h +++ b/runtime/art_method.h @@ -1126,8 +1126,9 @@ class EXPORT ArtMethod final { // Non-abstract methods: The hotness we measure for this method. Not atomic, // as we allow missing increments: if the method is hot, we will see it eventually. uint16_t hotness_count_; - // Abstract methods: IMT index. + // Abstract interface methods: IMT index. uint16_t imt_index_; + // Abstract class (non-interface) methods: Unused (zero-initialized). }; // Fake padding field gets inserted here. |