forked from Imagelibrary/binutils-gdb
sim: igen: migrate to standard uintXX_t types
Move off the custom local 64-bit types and to the standard uintXX_t types that C11 provides.
This commit is contained in:
@@ -984,8 +984,8 @@ print_idecode_globals (lf *file)
|
||||
lf_printf (file, "\n");
|
||||
lf_printf (file, "typedef struct _idecode_table_entry {\n");
|
||||
lf_printf (file, " int shift;\n");
|
||||
lf_printf (file, " unsigned%d mask;\n", options.insn_bit_size);
|
||||
lf_printf (file, " unsigned%d value;\n", options.insn_bit_size);
|
||||
lf_printf (file, " uint%d_t mask;\n", options.insn_bit_size);
|
||||
lf_printf (file, " uint%d_t value;\n", options.insn_bit_size);
|
||||
lf_printf (file, " void *function_or_table;\n");
|
||||
lf_printf (file, "} idecode_table_entry;\n");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user