summaryrefslogtreecommitdiff
path: root/runtime/mirror/class_flags.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/mirror/class_flags.h')
-rw-r--r--runtime/mirror/class_flags.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/mirror/class_flags.h b/runtime/mirror/class_flags.h
index 139c4cb67a..c85b9e0eee 100644
--- a/runtime/mirror/class_flags.h
+++ b/runtime/mirror/class_flags.h
@@ -56,6 +56,9 @@ static constexpr uint32_t kClassFlagFinalizerReference = 0x00000200;
// Class is the phantom reference class.
static constexpr uint32_t kClassFlagPhantomReference = 0x00000400;
+// Class is a record class. See doc at java.lang.Class#isRecord().
+static constexpr uint32_t kClassFlagRecord = 0x00000800;
+
// Combination of flags to figure out if the class is either the weak/soft/phantom/finalizer
// reference class.
static constexpr uint32_t kClassFlagReference =