* config/tc-m68k.c: Change some "CONST" references to "const".
Just changed those which caused redefinition errors on a system where CONST != const. Many more remain.
This commit is contained in:
parent
db8beef4ea
commit
326b087c89
2 changed files with 9 additions and 5 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Fri Sep 15 21:39:29 1995 Jeff Law (law@snake.cs.utah.edu)
|
||||||
|
|
||||||
|
* config/tc-m68k.c: Change some "CONST" references to "const".
|
||||||
|
|
||||||
Fri Sep 15 17:27:41 1995 Ken Raeburn <raeburn@cygnus.com>
|
Fri Sep 15 17:27:41 1995 Ken Raeburn <raeburn@cygnus.com>
|
||||||
|
|
||||||
Tue Sep 12 17:08:23 1995 Pat Rankin <rankin@eql.caltech.edu>
|
Tue Sep 12 17:08:23 1995 Pat Rankin <rankin@eql.caltech.edu>
|
||||||
|
|
|
@ -30,9 +30,9 @@
|
||||||
/* This array holds the chars that always start a comment. If the
|
/* This array holds the chars that always start a comment. If the
|
||||||
pre-processor is disabled, these aren't very useful */
|
pre-processor is disabled, these aren't very useful */
|
||||||
#if defined (OBJ_ELF) || defined (TE_DELTA)
|
#if defined (OBJ_ELF) || defined (TE_DELTA)
|
||||||
CONST char comment_chars[] = "|#";
|
const char comment_chars[] = "|#";
|
||||||
#else
|
#else
|
||||||
CONST char comment_chars[] = "|";
|
const char comment_chars[] = "|";
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* This array holds the chars that only start a comment at the beginning of
|
/* This array holds the chars that only start a comment at the beginning of
|
||||||
|
@ -42,9 +42,9 @@ CONST char comment_chars[] = "|";
|
||||||
first line of the input file. This is because the compiler outputs
|
first line of the input file. This is because the compiler outputs
|
||||||
#NO_APP at the beginning of its output. */
|
#NO_APP at the beginning of its output. */
|
||||||
/* Also note that comments like this one will always work. */
|
/* Also note that comments like this one will always work. */
|
||||||
CONST char line_comment_chars[] = "#";
|
const char line_comment_chars[] = "#";
|
||||||
|
|
||||||
CONST char line_separator_chars[] = "";
|
const char line_separator_chars[] = "";
|
||||||
|
|
||||||
/* Chars that can be used to separate mant from exp in floating point nums */
|
/* Chars that can be used to separate mant from exp in floating point nums */
|
||||||
CONST char EXP_CHARS[] = "eE";
|
CONST char EXP_CHARS[] = "eE";
|
||||||
|
@ -419,7 +419,7 @@ relax_typeS md_relax_table[] =
|
||||||
function to call to execute this pseudo-op
|
function to call to execute this pseudo-op
|
||||||
Integer arg to pass to the function
|
Integer arg to pass to the function
|
||||||
*/
|
*/
|
||||||
CONST pseudo_typeS md_pseudo_table[] =
|
const pseudo_typeS md_pseudo_table[] =
|
||||||
{
|
{
|
||||||
{"data1", s_data1, 0},
|
{"data1", s_data1, 0},
|
||||||
{"data2", s_data2, 0},
|
{"data2", s_data2, 0},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue