diff options
author | Fred Fish <fnf@specifix.com> | 1993-04-16 23:22:41 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1993-04-16 23:22:41 +0000 |
commit | 5aefc1ca23bd14fa7b462fea41500a7df423a515 (patch) | |
tree | 013368def4e4b482668fb8586e7150c68aad458c /gdb/dwarfread.c | |
parent | b1086bf532f281c50af75bf2e509722f8a17ee2d (diff) | |
download | gdb-5aefc1ca23bd14fa7b462fea41500a7df423a515.zip gdb-5aefc1ca23bd14fa7b462fea41500a7df423a515.tar.gz gdb-5aefc1ca23bd14fa7b462fea41500a7df423a515.tar.bz2 |
Remove chill sanitizations, which are no longer necessary.
Diffstat (limited to 'gdb/dwarfread.c')
-rw-r--r-- | gdb/dwarfread.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gdb/dwarfread.c b/gdb/dwarfread.c index 998f1dd..5dc0c30 100644 --- a/gdb/dwarfread.c +++ b/gdb/dwarfread.c @@ -197,11 +197,9 @@ typedef unsigned int DIE_REF; /* Reference to a DIE */ #define LCC_PRODUCER "NCR C/C++" #endif -/* start-sanitize-chill */ #ifndef CHILL_PRODUCER #define CHILL_PRODUCER "GNU Chill " #endif -/* end-sanitize-chill */ /* Flags to target_to_host() that tell whether or not the data object is expected to be signed. Used, for example, when fetching a signed @@ -674,11 +672,9 @@ set_cu_language (dip) case LANG_C_PLUS_PLUS: cu_language = language_cplus; break; - /* start-sanitize-chill */ case LANG_CHILL: cu_language = language_chill; break; - /* end-sanitize-chill */ case LANG_MODULA2: cu_language = language_m2; break; @@ -1903,9 +1899,7 @@ handle_producer (producer) 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 |