Commit 4ca551d1 by Roger Sayle Committed by Roger Sayle

* tree-browser.c: Remove obsolete #ifdef HOST_EBCDIC code.

From-SVN: r92525
parent a1df694e
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> 2004-12-23 Alan Modra <amodra@bigpond.net.au>
PR target/18896 PR target/18896
......
...@@ -53,11 +53,7 @@ struct tb_command { ...@@ -53,11 +53,7 @@ struct tb_command {
}; };
#define DEFTBCODE(code, str, help) { help, str, sizeof(str) - 1, code }, #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[] = static const struct tb_command tb_commands[] =
#endif
{ {
#include "tree-browser.def" #include "tree-browser.def"
}; };
...@@ -77,11 +73,7 @@ struct tb_tree_code { ...@@ -77,11 +73,7 @@ struct tb_tree_code {
}; };
#define DEFTREECODE(SYM, STRING, TYPE, NARGS) { SYM, STRING, sizeof (STRING) - 1 }, #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[] = static const struct tb_tree_code tb_tree_codes[] =
#endif
{ {
#include "tree.def" #include "tree.def"
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment