aboutsummaryrefslogtreecommitdiff
path: root/sim/common/cgen-par.h
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2021-12-06 02:29:47 -0500
committerMike Frysinger <vapier@gentoo.org>2022-01-06 01:17:39 -0500
commite4c803f5bb08e946f0550260b39f71eff0192262 (patch)
treeb63f746ac5cc0496d802a5c2c27f27598333dcc2 /sim/common/cgen-par.h
parent9850d2d83eb919dc9e333e8ad9d7f308d2d1967b (diff)
downloadgdb-e4c803f5bb08e946f0550260b39f71eff0192262.zip
gdb-e4c803f5bb08e946f0550260b39f71eff0192262.tar.gz
gdb-e4c803f5bb08e946f0550260b39f71eff0192262.tar.bz2
sim: common: migrate to standard uintXX_t types
Drop the sim-specific unsignedXX types and move to the standard uintXX_t types that C11 provides.
Diffstat (limited to 'sim/common/cgen-par.h')
-rw-r--r--sim/common/cgen-par.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/common/cgen-par.h b/sim/common/cgen-par.h
index c06dcd5..46364b6 100644
--- a/sim/common/cgen-par.h
+++ b/sim/common/cgen-par.h
@@ -38,7 +38,7 @@ enum cgen_write_queue_kind {
typedef struct {
enum cgen_write_queue_kind kind; /* Used to select union member below. */
IADDR insn_address; /* Address of the insn performing the write. */
- unsigned32 flags; /* Target specific flags. */
+ uint32_t flags; /* Target specific flags. */
long word1; /* Target specific field. */
union {
struct {