* frame.h (frame_state): Move base_offset to end.
authorJason Merrill <jason@redhat.com>
Tue, 4 Jul 2000 07:55:39 +0000 (03:55 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Tue, 4 Jul 2000 07:55:39 +0000 (03:55 -0400)
From-SVN: r34864

gcc/ChangeLog
gcc/frame.h

index 16114dc..3308626 100644 (file)
@@ -1,3 +1,7 @@
+2000-07-04  Jason Merrill  <jason@redhat.com>
+
+       * frame.h (frame_state): Move base_offset to end.
+
 Mon Jul  3 21:31:43 2000  Clinton Popetz  <cpopetz@cygnus.com>
 
        * calls.c (emit_library_call_value_1): Revert previous change.
index 52908f1..dc44561 100644 (file)
@@ -30,12 +30,12 @@ typedef struct frame_state
   void *cfa;
   void *eh_ptr;
   long cfa_offset;
-  long base_offset;
   long args_size;
   long reg_or_offset[DWARF_FRAME_REGISTERS+1];
   unsigned short cfa_reg;
   unsigned short retaddr_column;
   char saved[DWARF_FRAME_REGISTERS+1];
+  long base_offset;
   char indirect;
 } frame_state;