From 47cbc7aa5e942f7529b88568dc9bd1e71637ad3a Mon Sep 17 00:00:00 2001 From: Juan Quintela Date: Wed, 30 Sep 2009 01:10:56 +0200 Subject: bdf: Remove last users of FALSE/TRUE This brings bfd_boolean to the wonderful world of , it is needed because it defines bdf_boolean as an enum with values true and false, and some architectures use TRUE, FALSE and give problems when you try to use Signed-off-by: Juan Quintela Signed-off-by: Anthony Liguori --- microblaze-dis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'microblaze-dis.c') diff --git a/microblaze-dis.c b/microblaze-dis.c index 6144334e6c..016b25e807 100644 --- a/microblaze-dis.c +++ b/microblaze-dis.c @@ -543,7 +543,7 @@ print_insn_microblaze (bfd_vma memaddr, struct disassemble_info * info) unsigned long inst, prev_inst; struct op_code_struct * op, *pop; int immval = 0; - boolean immfound = false; + bfd_boolean immfound = false; static bfd_vma prev_insn_addr = -1; /*init the prev insn addr */ static int prev_insn_vma = -1; /*init the prev insn vma */ int curr_insn_vma = info->buffer_vma; -- cgit v1.2.1