aboutsummaryrefslogtreecommitdiff
path: root/gas/config/obj-generic.c
diff options
context:
space:
mode:
authorK. Richard Pixley <rich@cygnus>1991-04-04 18:19:55 +0000
committerK. Richard Pixley <rich@cygnus>1991-04-04 18:19:55 +0000
commiteb4edf5df2ec5960a3b7ad76f5be23ddd7278516 (patch)
treec2b553eba1b81d7cc4ff83a9b3131417bf394a92 /gas/config/obj-generic.c
parent3a69b3aca678a3caf3ade7f9d42d18233b097ec6 (diff)
downloadgdb-eb4edf5df2ec5960a3b7ad76f5be23ddd7278516.zip
gdb-eb4edf5df2ec5960a3b7ad76f5be23ddd7278516.tar.gz
gdb-eb4edf5df2ec5960a3b7ad76f5be23ddd7278516.tar.bz2
new gas main line
Diffstat (limited to 'gas/config/obj-generic.c')
-rw-r--r--gas/config/obj-generic.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/gas/config/obj-generic.c b/gas/config/obj-generic.c
new file mode 100644
index 0000000..86eac73
--- /dev/null
+++ b/gas/config/obj-generic.c
@@ -0,0 +1,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 */