diff options
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 6 | ||||
-rw-r--r-- | gas/config/tc-aarch64.c | 2 | ||||
-rw-r--r-- | gas/config/tc-crx.c | 2 | ||||
-rw-r--r-- | gas/config/tc-nds32.h | 2 | ||||
-rw-r--r-- | gas/config/tc-pru.c | 2 |
5 files changed, 10 insertions, 4 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 354a14b..174cc86 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2021-03-31 Alan Modra <amodra@gmail.com> + + * config/tc-aarch64.c: Include stdint.h in place of bfd_stdint.h. + * config/tc-crx.c: Likewise. + * config/tc-nds32.h: Likewise. + 2021-03-30 Jan Beulich <jbeulich@suse.com> * config/tc-i386.c (build_modrm_byte): Change return type. diff --git a/gas/config/tc-aarch64.c b/gas/config/tc-aarch64.c index 6f782d0..9dd1def 100644 --- a/gas/config/tc-aarch64.c +++ b/gas/config/tc-aarch64.c @@ -22,7 +22,7 @@ #include "as.h" #include <limits.h> #include <stdarg.h> -#include "bfd_stdint.h" +#include <stdint.h> #define NO_RELOC 0 #include "safe-ctype.h" #include "subsegs.h" diff --git a/gas/config/tc-crx.c b/gas/config/tc-crx.c index 52eebcb..a82acb5 100644 --- a/gas/config/tc-crx.c +++ b/gas/config/tc-crx.c @@ -23,7 +23,7 @@ MA 02110-1301, USA. */ #include "as.h" -#include "bfd_stdint.h" +#include <stdint.h> #include "safe-ctype.h" #include "dwarf2dbg.h" #include "opcode/crx.h" diff --git a/gas/config/tc-nds32.h b/gas/config/tc-nds32.h index 7dbeb59..a74390a 100644 --- a/gas/config/tc-nds32.h +++ b/gas/config/tc-nds32.h @@ -22,7 +22,7 @@ #ifndef TC_NDS32 #define TC_NDS32 -#include "bfd_stdint.h" +#include <stdint.h> /* Enum mapping symbol. */ enum mstate diff --git a/gas/config/tc-pru.c b/gas/config/tc-pru.c index 5c41fa0..139e28e 100644 --- a/gas/config/tc-pru.c +++ b/gas/config/tc-pru.c @@ -21,7 +21,7 @@ 02110-1301, USA. */ #include "as.h" -#include "bfd_stdint.h" +#include <stdint.h> #include "opcode/pru.h" #include "elf/pru.h" #include "tc-pru.h" |