* jcf-write.c (get_classfile_modifiers): Formatting fixes.
authorBryce McKinlay <mckinlay@redhat.com>
Mon, 28 Jun 2004 23:48:33 +0000 (23:48 +0000)
committerBryce McKinlay <bryce@gcc.gnu.org>
Mon, 28 Jun 2004 23:48:33 +0000 (00:48 +0100)
From-SVN: r83831

gcc/java/ChangeLog
gcc/java/jcf-write.c

index 8a7a05d3331267f850247afcea91182193b40326..f6ad5ef0e17cb0c727f3bd52db41762bc656a480 100644 (file)
@@ -1,3 +1,7 @@
+2004-06-28  Bryce McKinlay  <mckinlay@redhat.com>
+
+       * jcf-write.c (get_classfile_modifiers): Formatting fixes.
+
 2004-06-27  Ranjit Mathew  <rmathew@hotmail.com>
 
        Formatting fixes.
index 8ead88661819d1a28062428be733588f52ab96d7..42136c6d727a7ba3cf2008cac6d6f894a984fb14 100644 (file)
@@ -2890,12 +2890,13 @@ release_jcf_state (struct jcf_partial *state)
 /* Get the access flags (modifiers) of a class (TYPE_DECL) to be used in the
    access_flags field of the class file header.  */
 
-static int get_classfile_modifiers (tree class)
+static int
+get_classfile_modifiers (tree class)
 {
   /* These are the flags which are valid class file modifiers. 
      See JVMS2 S4.1.  */
-  int valid_toplevel_class_flags = ACC_PUBLIC | ACC_FINAL | ACC_SUPER | 
-                                  ACC_INTERFACE | ACC_ABSTRACT;
+  int valid_toplevel_class_flags = (ACC_PUBLIC | ACC_FINAL | ACC_SUPER | 
+                                   ACC_INTERFACE | ACC_ABSTRACT);
   int flags = get_access_flags (class);
 
   /* ACC_SUPER should always be set, except for interfaces.  */