mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 03:29:47 +08:00
* config/obj-aout.h (S_IS_LOCAL): Correct typo--pass argument to
S_GET_SEGMENT.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
Wed Jan 28 14:51:18 1998 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
|
* config/obj-aout.h (S_IS_LOCAL): Correct typo--pass argument to
|
||||||
|
S_GET_SEGMENT.
|
||||||
|
|
||||||
Wed Jan 28 13:54:50 1998 Pat Rankin <rankin@eql.caltech.edu>
|
Wed Jan 28 13:54:50 1998 Pat Rankin <rankin@eql.caltech.edu>
|
||||||
|
|
||||||
as.h (unlink): Reverse 13-Feb-97 change; use of unlink vs remove
|
as.h (unlink): Reverse 13-Feb-97 change; use of unlink vs remove
|
||||||
|
@ -109,7 +109,7 @@ extern void obj_aout_frob_file PARAMS ((void));
|
|||||||
|| (S_LOCAL_NAME(s) && !flag_keep_locals))) \
|
|| (S_LOCAL_NAME(s) && !flag_keep_locals))) \
|
||||||
|| (flag_strip_local_absolute \
|
|| (flag_strip_local_absolute \
|
||||||
&& ! S_IS_EXTERNAL(s) \
|
&& ! S_IS_EXTERNAL(s) \
|
||||||
&& S_GET_SEGMENT == absolute_section))
|
&& S_GET_SEGMENT (s) == absolute_section))
|
||||||
/* True if a symbol is not defined in this file */
|
/* True if a symbol is not defined in this file */
|
||||||
#define S_IS_EXTERN(s) ((s)->sy_symbol.n_type & N_EXT)
|
#define S_IS_EXTERN(s) ((s)->sy_symbol.n_type & N_EXT)
|
||||||
/* True if the symbol has been generated because of a .stabd directive */
|
/* True if the symbol has been generated because of a .stabd directive */
|
||||||
|
Reference in New Issue
Block a user