target: make register flags "bool"
Mostly for clarity, but it also saves code and data space. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
This commit is contained in:
parent
ab5ac33fd4
commit
1c619a2f12
|
@ -29,8 +29,8 @@ struct reg
|
||||||
{
|
{
|
||||||
char *name;
|
char *name;
|
||||||
void *value;
|
void *value;
|
||||||
int dirty;
|
bool dirty;
|
||||||
int valid;
|
bool valid;
|
||||||
uint32_t size;
|
uint32_t size;
|
||||||
void *arch_info;
|
void *arch_info;
|
||||||
const struct reg_arch_type *type;
|
const struct reg_arch_type *type;
|
||||||
|
|
Loading…
Reference in New Issue