From: Alan Modra Date: Tue, 22 Sep 2009 02:36:26 +0000 (+0000) Subject: o * ppc.h (ppc_cpu_t): Typedef to uint64_t. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b961e85b6ebebe1381c29c9f50ba67d835d7c561;p=binutils-gdb.git o * ppc.h (ppc_cpu_t): Typedef to uint64_t. --- diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index 0282c467701..29f717bc40d 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,3 +1,7 @@ +2009-09-22 Peter Bergner + + * ppc.h (ppc_cpu_t): Typedef to uint64_t. + 2009-09-21 Ben Elliston * ppc.h (PPC_OPCODE_PPCA2): New. diff --git a/include/opcode/ppc.h b/include/opcode/ppc.h index 79b156289bf..c88485adb18 100644 --- a/include/opcode/ppc.h +++ b/include/opcode/ppc.h @@ -22,7 +22,9 @@ Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, US #ifndef PPC_H #define PPC_H -typedef unsigned long ppc_cpu_t; +#include "bfd_stdint.h" + +typedef uint64_t ppc_cpu_t; /* The opcode table is an array of struct powerpc_opcode. */