diff options
| author | 2025-03-03 18:01:20 -0800 | |
|---|---|---|
| committer | 2025-03-03 18:01:20 -0800 | |
| commit | 9208bea8f7c4ca98e59b38f51a211c005f4cf1d7 (patch) | |
| tree | 5573cb41c947e31762a1d67814d9e86946ffe02c /libdexfile/dex/modifiers.h | |
| parent | f97336b1d78f3d7f6def796988fd5cfc06d9a9c0 (diff) | |
| parent | e29eb53ebf11fdb891762db7dd927e95a0858fc0 (diff) | |
Snap for 13152920 from e29eb53ebf11fdb891762db7dd927e95a0858fc0 to 25Q2-release
Change-Id: I5c70c4ce7072f3c284c6cbd6d14eb63ba7e9cea6
Diffstat (limited to 'libdexfile/dex/modifiers.h')
| -rw-r--r-- | libdexfile/dex/modifiers.h | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/libdexfile/dex/modifiers.h b/libdexfile/dex/modifiers.h index 94e25e8e6e..ad6472df57 100644 --- a/libdexfile/dex/modifiers.h +++ b/libdexfile/dex/modifiers.h @@ -59,6 +59,9 @@ static constexpr uint32_t kAccObsoleteObject =        0x00200000;  // class (run  // Set during boot image compilation to indicate that the class is  // not initialized at compile time and not in the list of preloaded classes.  static constexpr uint32_t kAccInBootImageAndNotInPreloadedClasses = 0x00400000;  // class (runtime) +// Set after verification if at least one of the class's method has unresolved +// type checks failures. +static constexpr uint32_t kAccHasTypeChecksFailure = 0x00800000;  // class (runtime)  // This is set by the class linker during LinkInterfaceMethods. It is used by a method  // to represent that it was copied from its declaring class into another class.  // We need copies of the original method because the method may end up in different  |