diff options
author | Alan Modra <amodra@gmail.com> | 2006-09-11 02:32:50 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2006-09-11 02:32:50 +0000 |
commit | 8d79fd448b803f22511862c457478c986aadc94b (patch) | |
tree | 5c1898f76ee44bbb35b755084eb3f40fd56b4a38 /gas/config/tc-mips.h | |
parent | 3cd97e27c17c50c6bfe71e109df0e458eae10734 (diff) | |
download | gdb-8d79fd448b803f22511862c457478c986aadc94b.zip gdb-8d79fd448b803f22511862c457478c986aadc94b.tar.gz gdb-8d79fd448b803f22511862c457478c986aadc94b.tar.bz2 |
PR gas/3165
* config/tc-mips.h (enum dwarf2_format): Forward declare.
(DWARF2_CIE_DATA_ALIGNMENT): Wrap negative number in parens.
* config/tc-alpha.h (DWARF2_CIE_DATA_ALIGNMENT): Likewise.
* config/tc-arm.h (DWARF2_CIE_DATA_ALIGNMENT): Likewise.
Diffstat (limited to 'gas/config/tc-mips.h')
-rw-r--r-- | gas/config/tc-mips.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gas/config/tc-mips.h b/gas/config/tc-mips.h index 8845a5a..5a1e830 100644 --- a/gas/config/tc-mips.h +++ b/gas/config/tc-mips.h @@ -1,6 +1,6 @@ /* tc-mips.h -- header file for tc-mips.c. - Copyright 1993, 1994, 1995, 1996, 1997, 2000, 2001, 2002, 2003, 2004 - Free Software Foundation, Inc. + Copyright 1993, 1994, 1995, 1996, 1997, 2000, 2001, 2002, 2003, 2004, + 2005, 2006 Free Software Foundation, Inc. Contributed by the OSF and Ralph Campbell. Written by Keith Knowles and Ralph Campbell, working independently. Modified for ECOFF support by Ian Lance Taylor of Cygnus Support. @@ -152,6 +152,7 @@ extern void mips_emit_delays (void); extern void mips_enable_auto_align (void); #define md_elf_section_change_hook() mips_enable_auto_align() +enum dwarf2_format; extern enum dwarf2_format mips_dwarf2_format (void); #define DWARF2_FORMAT() mips_dwarf2_format () @@ -167,6 +168,6 @@ extern void mips_cfi_frame_initial_instructions (void); extern int tc_mips_regname_to_dw2regnum (char *regname); #define DWARF2_DEFAULT_RETURN_COLUMN 31 -#define DWARF2_CIE_DATA_ALIGNMENT -4 +#define DWARF2_CIE_DATA_ALIGNMENT (-4) #endif /* TC_MIPS */ |