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:
David Brownell 2009-11-22 10:20:14 -08:00
parent ab5ac33fd4
commit 1c619a2f12

View File

@ -29,8 +29,8 @@ struct reg
{
char *name;
void *value;
int dirty;
int valid;
bool dirty;
bool valid;
uint32_t size;
void *arch_info;
const struct reg_arch_type *type;