aboutsummaryrefslogtreecommitdiff
path: root/gas/config/obj-generic.c
blob: 86eac73c2e86c8988bd294a1f6495c37b63cbb9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * This file is obj-generic.c and is intended to be a template for
 * object format specific source files. 
 *
 * Last Mod Thu Jan 3 19:30:50 PST 1991, by rich@sendai
 */

/* Chars that can be used to separate mant from exp in floating point nums */
char EXP_CHARS[] = "eE";

/* Chars that mean this number is a floating point constant */
/* As in 0f12.456 */
/* or    0d1.2345e12 */
char FLT_CHARS[] = "rRsSfFdDxXpP";

/* These chars start a comment anywhere in a source file (except inside
   another comment */
const char comment_chars[] = "#";

/*
 * Local Variables:
 * comment-column: 0
 * fill-column: 131
 * End:
 */

/* end of obj-generic.c */