dwarf2out.c (DWARF_CIE_DATA_ALIGNMENT): Adjust, now that UNITS_PER_WORD is unsigned.
* dwarf2out.c (DWARF_CIE_DATA_ALIGNMENT): Adjust, now that UNITS_PER_WORD is unsigned. From-SVN: r33200
This commit is contained in:
parent
76c9d22625
commit
08cb3d38de
2 changed files with 5 additions and 2 deletions
|
@ -1,5 +1,8 @@
|
||||||
2000-04-16 Mark Mitchell <mark@codesourcery.com>
|
2000-04-16 Mark Mitchell <mark@codesourcery.com>
|
||||||
|
|
||||||
|
* dwarf2out.c (DWARF_CIE_DATA_ALIGNMENT): Adjust, now that
|
||||||
|
UNITS_PER_WORD is unsigned.
|
||||||
|
|
||||||
* tree.h (struct tree_common): Remove misleading comment.
|
* tree.h (struct tree_common): Remove misleading comment.
|
||||||
|
|
||||||
2000-04-16 Dave Pitts <dpitts@cozx.com>
|
2000-04-16 Dave Pitts <dpitts@cozx.com>
|
||||||
|
|
|
@ -164,9 +164,9 @@ dw_fde_node;
|
||||||
|
|
||||||
/* Offsets recorded in opcodes are a multiple of this alignment factor. */
|
/* Offsets recorded in opcodes are a multiple of this alignment factor. */
|
||||||
#ifdef STACK_GROWS_DOWNWARD
|
#ifdef STACK_GROWS_DOWNWARD
|
||||||
#define DWARF_CIE_DATA_ALIGNMENT (-UNITS_PER_WORD)
|
#define DWARF_CIE_DATA_ALIGNMENT (-((int) UNITS_PER_WORD))
|
||||||
#else
|
#else
|
||||||
#define DWARF_CIE_DATA_ALIGNMENT UNITS_PER_WORD
|
#define DWARF_CIE_DATA_ALIGNMENT ((int) UNITS_PER_WORD)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* A pointer to the base of a table that contains frame description
|
/* A pointer to the base of a table that contains frame description
|
||||||
|
|
Loading…
Add table
Reference in a new issue