* config/tc-mmix.c [!LLONG_MIN]: Correct #elsif to #elif.
[!LLONG_MAX]: Ditto.
This commit is contained in:
parent
7dd403a4be
commit
7e1792e018
|
@ -1,3 +1,8 @@
|
||||||
|
2004-09-14 Hideki IWAMOTO <h-iwamoto@kit.hi-ho.ne.jp>
|
||||||
|
|
||||||
|
* config/tc-mmix.c [!LLONG_MIN]: Correct #elsif to #elif.
|
||||||
|
[!LLONG_MAX]: Ditto.
|
||||||
|
|
||||||
2004-09-13 Paul Brook <paul@codesourcery.com>
|
2004-09-13 Paul Brook <paul@codesourcery.com>
|
||||||
|
|
||||||
* config/tc-arm.c: Rename RELABS to TARGET1.
|
* config/tc-arm.c: Rename RELABS to TARGET1.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* tc-mmix.c -- Assembler for Don Knuth's MMIX.
|
/* tc-mmix.c -- Assembler for Don Knuth's MMIX.
|
||||||
Copyright (C) 2001, 2002, 2003 Free Software Foundation.
|
Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation.
|
||||||
|
|
||||||
This file is part of GAS, the GNU Assembler.
|
This file is part of GAS, the GNU Assembler.
|
||||||
|
|
||||||
|
@ -305,14 +305,14 @@ struct obstack mmix_sym_obstack;
|
||||||
long long is 64 bits on the host). */
|
long long is 64 bits on the host). */
|
||||||
#ifdef LLONG_MIN
|
#ifdef LLONG_MIN
|
||||||
#define PUSHJSTUB_MIN LLONG_MIN
|
#define PUSHJSTUB_MIN LLONG_MIN
|
||||||
#elsif defined (LONG_LONG_MIN)
|
#elif defined (LONG_LONG_MIN)
|
||||||
#define PUSHJSTUB_MIN LONG_LONG_MIN
|
#define PUSHJSTUB_MIN LONG_LONG_MIN
|
||||||
#else
|
#else
|
||||||
#define PUSHJSTUB_MIN LONG_MIN
|
#define PUSHJSTUB_MIN LONG_MIN
|
||||||
#endif
|
#endif
|
||||||
#ifdef LLONG_MAX
|
#ifdef LLONG_MAX
|
||||||
#define PUSHJSTUB_MAX LLONG_MAX
|
#define PUSHJSTUB_MAX LLONG_MAX
|
||||||
#elsif defined (LONG_LONG_MAX)
|
#elif defined (LONG_LONG_MAX)
|
||||||
#define PUSHJSTUB_MAX LONG_LONG_MAX
|
#define PUSHJSTUB_MAX LONG_LONG_MAX
|
||||||
#else
|
#else
|
||||||
#define PUSHJSTUB_MAX LONG_MAX
|
#define PUSHJSTUB_MAX LONG_MAX
|
||||||
|
|
Loading…
Reference in New Issue