diff options
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 72949b0b7b..a17545c52b 100644 --- a/libdexfile/dex/modifiers.h +++ b/libdexfile/dex/modifiers.h @@ -56,6 +56,9 @@ static constexpr uint32_t kAccSkipHiddenapiChecks = 0x00100000; // class (run // Used by a class to denote that this class and any objects with this as a // declaring-class/super-class are to be considered obsolete, meaning they should not be used by. static constexpr uint32_t kAccObsoleteObject = 0x00200000; // class (runtime) +// Set during boot image compilation to indicate that the class is +// not initialized at compile tile and not in the list of preloaded classes. +static constexpr uint32_t kAccInBootImageAndNotInPreloadedClasses = 0x00400000; // 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 |