< prev index next >

src/utils/LogCompilation/src/main/java/com/sun/hotspot/tools/compiler/Constants.java

Print this page
@@ -1,7 +1,7 @@
  /*
-  * Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.
+  * Copyright (c) 2009, 2026, Oracle and/or its affiliates. All rights reserved.
   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   *
   * This code is free software; you can redistribute it and/or modify it
   * under the terms of the GNU General Public License version 2 only, as
   * published by the Free Software Foundation.

@@ -38,9 +38,10 @@
      static final int  JVM_ACC_VARARGS       = 0x0080;  /* method declared with variable number of args */
      static final int  JVM_ACC_NATIVE        = 0x0100;  /* implemented in C */
      static final int  JVM_ACC_INTERFACE     = 0x0200;  /* class is an interface */
      static final int  JVM_ACC_ABSTRACT      = 0x0400;  /* no definition provided */
      static final int  JVM_ACC_STRICT        = 0x0800;  /* strict floating point */
+     static final int  JVM_ACC_STRICT_INIT   = 0x0800;  /* strict field initialization */
      static final int  JVM_ACC_SYNTHETIC     = 0x1000;  /* compiler-generated class, method or field */
      static final int  JVM_ACC_ANNOTATION    = 0x2000;  /* annotation type */
      static final int  JVM_ACC_ENUM          = 0x4000;  /* field is declared as element of enum */
  }
< prev index next >