function.h (struct function): Move function_frequency and max_jumptable_ents before...
authorRichard Henderson <rth@redhat.com>
Fri, 29 Aug 2003 22:19:35 +0000 (15:19 -0700)
committerRichard Henderson <rth@gcc.gnu.org>
Fri, 29 Aug 2003 22:19:35 +0000 (15:19 -0700)
        * function.h (struct function): Move function_frequency and
        max_jumptable_ents before start of bit field members.

From-SVN: r70928

gcc/ChangeLog
gcc/function.h

index 4e7b04796d6becf978550f9456d417f9e1b46839..48a24ce42f07ac38e13227174c0e978e3084498c 100644 (file)
@@ -3,6 +3,11 @@
         * config.gcc: Don't use negated character class in shell case
         clause.
 
+2003-08-29  Richard Henderson  <rth@redhat.com>
+
+       * function.h (struct function): Move function_frequency and
+       max_jumptable_ents before start of bit field members.
+
 2003-08-29  Richard Henderson  <rth@redhat.com>
 
        * builtins.c (expand_builtin_constant_p): Check cse_not_expected here,
index 4f5b51f8d9c5df0601340129218143721479cae9..4216acb6a2551a55f87ddb4b97f54ded74bbe53d 100644 (file)
@@ -389,6 +389,23 @@ struct function GTY(())
      delay list for them is recorded here.  */
   rtx epilogue_delay_list;
 
+  /* How commonly executed the function is.  Initialized during branch
+     probabilities pass.  */
+  enum function_frequency {
+    /* This function most likely won't be executed at all.
+       (set only when profile feedback is available).  */
+    FUNCTION_FREQUENCY_UNLIKELY_EXECUTED,
+    /* The default value.  */
+    FUNCTION_FREQUENCY_NORMAL,
+    /* Optimize this function hard
+       (set only when profile feedback is available).  */
+    FUNCTION_FREQUENCY_HOT
+  } function_frequency;
+
+  /* Maximal number of entities in the single jumptable.  Used to estimate
+     final flowgraph size.  */
+  int max_jumptable_ents;
+
   /* Collected bit flags.  */
 
   /* Nonzero if function being compiled needs to be given an address
@@ -487,23 +504,6 @@ struct function GTY(())
 
   /* Nonzero if code to initialize arg_pointer_save_area has been emitted.  */
   unsigned int arg_pointer_save_area_init : 1;
-
-  /* How commonly executed the function is.  Initialized during branch
-     probabilities pass.  */
-  enum function_frequency {
-    /* This function most likely won't be executed at all.
-       (set only when profile feedback is available).  */
-    FUNCTION_FREQUENCY_UNLIKELY_EXECUTED,
-    /* The default value.  */
-    FUNCTION_FREQUENCY_NORMAL,
-    /* Optimize this function hard
-       (set only when profile feedback is available).  */
-    FUNCTION_FREQUENCY_HOT
-  } function_frequency;
-
-  /* Maximal number of entities in the single jumptable.  Used to estimate
-     final flowgraph size.  */
-  int max_jumptable_ents;
 };
 
 /* The function currently being compiled.  */