mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-21 10:34:21 +08:00
* defs.h (INT_MAX): Cast unsigned shift result to int.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
Fri Jun 11 10:24:35 1993 Fred Fish (fnf@cygnus.com)
|
||||||
|
|
||||||
|
* defs.h (INT_MAX): Cast unsigned shift result to int.
|
||||||
|
|
||||||
Thu Jun 10 13:26:41 1993 Fred Fish (fnf@cygnus.com)
|
Thu Jun 10 13:26:41 1993 Fred Fish (fnf@cygnus.com)
|
||||||
|
|
||||||
* elfread.c (elf_symtab_read): Add bfd section address to bfd
|
* elfread.c (elf_symtab_read): Add bfd section address to bfd
|
||||||
|
@ -40,7 +40,7 @@ typedef unsigned int CORE_ADDR;
|
|||||||
#define STREQ(a,b) (*(a) == *(b) ? !strcmp ((a), (b)) : 0)
|
#define STREQ(a,b) (*(a) == *(b) ? !strcmp ((a), (b)) : 0)
|
||||||
#define STREQN(a,b,c) (*(a) == *(b) ? !strncmp ((a), (b), (c)) : 0)
|
#define STREQN(a,b,c) (*(a) == *(b) ? !strncmp ((a), (b), (c)) : 0)
|
||||||
|
|
||||||
/* The character C++ uses to build identifiers that must be unique from
|
/* The character GNU C++ uses to build identifiers that must be unique from
|
||||||
the program's identifiers (such as $this and $$vptr). */
|
the program's identifiers (such as $this and $$vptr). */
|
||||||
#define CPLUS_MARKER '$' /* May be overridden to '.' for SysV */
|
#define CPLUS_MARKER '$' /* May be overridden to '.' for SysV */
|
||||||
|
|
||||||
@ -438,7 +438,7 @@ enum val_prettyprint
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !defined (INT_MAX)
|
#if !defined (INT_MAX)
|
||||||
#define INT_MAX (UINT_MAX >> 1) /* 0x7FFFFFFF for 32-bits */
|
#define INT_MAX ((int)(UINT_MAX >> 1)) /* 0x7FFFFFFF for 32-bits */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !defined (INT_MIN)
|
#if !defined (INT_MIN)
|
||||||
|
Reference in New Issue
Block a user