forked from auracaster/openocd
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:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user