aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/tree-browser.c8
2 files changed, 4 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 8575eb7..76fd383 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2004-12-22 Roger Sayle <roger@eyesopen.com>
+
+ * tree-browser.c: Remove obsolete #ifdef HOST_EBCDIC code.
+
2004-12-23 Alan Modra <amodra@bigpond.net.au>
PR target/18896
diff --git a/gcc/tree-browser.c b/gcc/tree-browser.c
index ccbccde..df1c7e9 100644
--- a/gcc/tree-browser.c
+++ b/gcc/tree-browser.c
@@ -53,11 +53,7 @@ struct tb_command {
};
#define DEFTBCODE(code, str, help) { help, str, sizeof(str) - 1, code },
-#ifdef HOST_EBCDIC
-static struct tb_command tb_commands[] =
-#else
static const struct tb_command tb_commands[] =
-#endif
{
#include "tree-browser.def"
};
@@ -77,11 +73,7 @@ struct tb_tree_code {
};
#define DEFTREECODE(SYM, STRING, TYPE, NARGS) { SYM, STRING, sizeof (STRING) - 1 },
-#ifdef HOST_EBCDIC
-static struct tb_tree_code tb_tree_codes[] =
-#else
static const struct tb_tree_code tb_tree_codes[] =
-#endif
{
#include "tree.def"
};