+ **** start-sanitize-chill ****
+Tue Dec 1 17:07:31 1992 Fred Fish (fnf@cygnus.com)
+
+ * dwarfread.c (CHILL_PRODUCER): Add producer string for
+ GNU chill.
+ * dwarfread.c (handle_producer): Test CHILL_PRODUCER as well
+ as GCC_PRODUCER and GPLUS_PRODUCER.
+ **** end-sanitize-chill ****
+
Mon Nov 30 18:46:58 1992 Stu Grossman (grossman at cygnus.com)
* remote-udi.c (udi_wait): Don't stop if TIP says that remote is
#define CFRONT_PRODUCER "CFRONT " /* A wild a** guess... */
#endif
+/* start-sanitize-chill */
+#ifndef CHILL_PRODUCER
+#define CHILL_PRODUCER "GNU Chill "
+#endif
+/* end-sanitize-chill */
+
#define STREQ(a,b) (strcmp(a,b)==0)
#define STREQN(a,b,n) (strncmp(a,b,n)==0)
processing_gcc_compilation =
STREQN (producer, GPLUS_PRODUCER, strlen (GPLUS_PRODUCER))
+ /* start-sanitize-chill */
+ || STREQN (producer, CHILL_PRODUCER, strlen (CHILL_PRODUCER))
+ /* end-sanitize-chill */
|| STREQN (producer, GCC_PRODUCER, strlen (GCC_PRODUCER));
/* Select a demangling style if we can identify the producer and if