aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorronny2004-04-29 12:28:08 +0000
committerronny2004-04-29 12:28:08 +0000
commit8bbf68fe4e2f51980c1dd7b88815464deb141ec4 (patch)
treee9322b7576eda242a8112e644dc65ebe6cc49a4c
parentpass compiler_id in message to the IDE (diff)
removed analysis of ident names for instance types (pre-Clean 2.0 code)
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@1494 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
-rw-r--r--backendC/CleanCompilerSources/checksupport.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/backendC/CleanCompilerSources/checksupport.c b/backendC/CleanCompilerSources/checksupport.c
index cecd7f6..b3e23f4 100644
--- a/backendC/CleanCompilerSources/checksupport.c
+++ b/backendC/CleanCompilerSources/checksupport.c
@@ -351,9 +351,6 @@ static char *PrintTypesOfSymbol (char *type_repr, File file, ModuleInfo module_i
} /* PrintTypesOfSymbol */
#define _ANALYSE_IDENT_ /* also in optimisations.c */
-#ifndef CLEAN2
-#define _ANALYSE_INSTANCE_TYPES_
-#endif
#define MAX_SYMBOL_EXTENSION_SIZE 40
void PrintSymbolOfIdent (Ident sid, unsigned line_nr, File file)
@@ -410,20 +407,7 @@ void PrintSymbolOfIdent (Ident sid, unsigned line_nr, File file)
next_char = end_name + 1;
}
-# ifdef _ANALYSE_INSTANCE_TYPES_
- FPutS (" (", file);
-
- next_char = PrintTypesOfSymbol (next_char, file, sid -> ident_mod_info, & print_length);
-
- for (; *next_char == cTypeDelimiter; )
- { FPutC (',', file);
- next_char = PrintTypesOfSymbol (++next_char, file, sid -> ident_mod_info, & print_length);
- }
-
- FPutC (')', file);
-# else
FPutS (next_char, file);
-# endif
}
#else
FPutS (name, file);