diff options
author | Roger Sayle <roger@eyesopen.com> | 2004-12-23 01:22:18 +0000 |
---|---|---|
committer | Roger Sayle <sayle@gcc.gnu.org> | 2004-12-23 01:22:18 +0000 |
commit | 4ca551d190ba0fb10ab0fa13535a2bf20d95e477 (patch) | |
tree | 5c8c976b274aa987d4c5878efe18f4a5b20e510b /gcc/tree-browser.c | |
parent | a1df694e931a4a8a3c72d7bdaf03cbf331bade82 (diff) | |
download | gcc-4ca551d190ba0fb10ab0fa13535a2bf20d95e477.zip gcc-4ca551d190ba0fb10ab0fa13535a2bf20d95e477.tar.gz gcc-4ca551d190ba0fb10ab0fa13535a2bf20d95e477.tar.bz2 |
* tree-browser.c: Remove obsolete #ifdef HOST_EBCDIC code.
From-SVN: r92525
Diffstat (limited to 'gcc/tree-browser.c')
-rw-r--r-- | gcc/tree-browser.c | 8 |
1 files changed, 0 insertions, 8 deletions
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" }; |