* frame.h (frame_state): Move base_offset to end.

From-SVN: r34864
This commit is contained in:
Jason Merrill 2000-07-04 03:55:39 -04:00 committed by Jason Merrill
parent 90418208f9
commit 60b5594752
2 changed files with 5 additions and 1 deletions

View 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.

View 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;