]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
sim: iq2000: migrate to standard uintXX_t types
authorMike Frysinger <vapier@gentoo.org>
Mon, 6 Dec 2021 07:16:02 +0000 (02:16 -0500)
committerMike Frysinger <vapier@gentoo.org>
Thu, 6 Jan 2022 06:17:38 +0000 (01:17 -0500)
Move off the sim-specific unsignedXX types and to the standard uintXX_t
types that C11 provides.

sim/iq2000/iq2000.c

index 6d210f41111619eb6d9a2f65487a8ee4ccda50d0..b685a31b07a5ee3827d1a439cf4581be5a7f0c1d 100644 (file)
@@ -211,14 +211,14 @@ iq2000bf_fetch_register (SIM_CPU *cpu, int nr, unsigned char *buf, int len)
       && nr < (GPR0_REGNUM + NR_GPR)
       && len == 4)
     {
-      *((unsigned32*)buf) =
+      *((uint32_t*)buf) =
        H2T_4 (iq2000bf_h_gr_get (cpu, nr - GPR0_REGNUM));
       return 4;
     }
   else if (nr == PC_REGNUM
           && len == 4)
     {
-      *((unsigned32*)buf) = H2T_4 (get_h_pc (cpu));
+      *((uint32_t*)buf) = H2T_4 (get_h_pc (cpu));
       return 4;
     }
   else
@@ -232,13 +232,13 @@ iq2000bf_store_register (SIM_CPU *cpu, int nr, unsigned char *buf, int len)
       && nr < (GPR0_REGNUM + NR_GPR)
       && len == 4)
     {
-      iq2000bf_h_gr_set (cpu, nr - GPR0_REGNUM, T2H_4 (*((unsigned32*)buf)));
+      iq2000bf_h_gr_set (cpu, nr - GPR0_REGNUM, T2H_4 (*((uint32_t*)buf)));
       return 4;
     }
   else if (nr == PC_REGNUM
           && len == 4)
     {
-      set_h_pc (cpu, T2H_4 (*((unsigned32*)buf)));
+      set_h_pc (cpu, T2H_4 (*((uint32_t*)buf)));
       return 4;
     }
   else