aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/math
diff options
context:
space:
mode:
authorGary Dismukes <dismukes@gnat.com>2004-10-27 14:28:57 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2004-10-27 14:28:57 +0200
commit910a2e4d8c25017c00098043c52a0ad8662272c8 (patch)
treee68f88fd51dd6c21f67e49a26565cbe0935c9d70 /libjava/java/math
parent7cd6e9f14f058fdac9ca87e19ff9c85907f3625c (diff)
downloadgcc-910a2e4d8c25017c00098043c52a0ad8662272c8.zip
gcc-910a2e4d8c25017c00098043c52a0ad8662272c8.tar.gz
gcc-910a2e4d8c25017c00098043c52a0ad8662272c8.tar.bz2
a-exexpr.adb (Setup_Key): Change initial value to 16#DEAD#...
2004-10-26 Gary Dismukes <dismukes@gnat.com> * a-exexpr.adb (Setup_Key): Change initial value to 16#DEAD#, for compatibility with type Unwind_Word on 16-bit targets such as AAMP. From-SVN: r89643
Diffstat (limited to 'libjava/java/math')
0 files changed, 0 insertions, 0 deletions
an>, const char **); }; /* This defines which switch letters take arguments. */ #define DEFAULT_SWITCH_TAKES_ARG(CHAR) \ ((CHAR) == 'D' || (CHAR) == 'U' || (CHAR) == 'o' \ || (CHAR) == 'e' || (CHAR) == 'T' || (CHAR) == 'u' \ || (CHAR) == 'I' || (CHAR) == 'm' || (CHAR) == 'x' \ || (CHAR) == 'L' || (CHAR) == 'A' || (CHAR) == 'V' \ || (CHAR) == 'B' || (CHAR) == 'b') /* This defines which multi-letter switches take arguments. */ #define DEFAULT_WORD_SWITCH_TAKES_ARG(STR) \ (!strcmp (STR, "Tdata") || !strcmp (STR, "Ttext") \ || !strcmp (STR, "Tbss") || !strcmp (STR, "include") \ || !strcmp (STR, "imacros") || !strcmp (STR, "aux-info") \ || !strcmp (STR, "idirafter") || !strcmp (STR, "iprefix") \ || !strcmp (STR, "iwithprefix") || !strcmp (STR, "iwithprefixbefore") \ || !strcmp (STR, "iquote") || !strcmp (STR, "isystem") \ || !strcmp (STR, "isysroot") \ || !strcmp (STR, "-param") || !strcmp (STR, "specs") \ || !strcmp (STR, "MF") || !strcmp (STR, "MT") || !strcmp (STR, "MQ")) /* These are exported by gcc.c. */ extern int do_spec (const char *); extern void record_temp_file (const char *, int, int); extern void fatal (const char *, ...) ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN; extern void error (const char *, ...) ATTRIBUTE_PRINTF_1; extern void pfatal_with_name (const char *) ATTRIBUTE_NORETURN; extern void set_input (const char *); /* Spec files linked with gcc.c must provide definitions for these. */ /* Called before processing to change/add/remove arguments. */ extern void lang_specific_driver (int *, const char *const **, int *); /* Called before linking. Returns 0 on success and -1 on failure. */ extern int lang_specific_pre_link (void); extern int n_infiles; /* Number of extra output files that lang_specific_pre_link may generate. */ extern int lang_specific_extra_outfiles; /* Table of language-specific spec functions. */ extern const struct spec_function lang_specific_spec_functions[]; /* A vector of corresponding output files is made up later. */ extern const char **outfiles; #endif /* ! GCC_GCC_H */