diff options
Diffstat (limited to 'gdb/spu-tdep.c')
-rw-r--r-- | gdb/spu-tdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/spu-tdep.c b/gdb/spu-tdep.c index ddaee54..d01f3af 100644 --- a/gdb/spu-tdep.c +++ b/gdb/spu-tdep.c @@ -52,9 +52,9 @@ static struct cmd_list_element *setspucmdlist = NULL; static struct cmd_list_element *showspucmdlist = NULL; /* Whether to stop for new SPE contexts. */ -static int spu_stop_on_load_p = 0; +static bool spu_stop_on_load_p = false; /* Whether to automatically flush the SW-managed cache. */ -static int spu_auto_flush_cache_p = 1; +static bool spu_auto_flush_cache_p = true; /* The tdep structure. */ |