* dwarf2read.c (read_base_type): Fix obvious &&/|| confusion.

This commit is contained in:
Joel Brobecker 2007-12-26 12:36:18 +00:00
parent a6a5a94583
commit 1760d9d580
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2007-12-26 Joel Brobecker <brobecker@adacore.com>
* dwarf2read.c (read_base_type): Fix obvious &&/|| confusion.
2007-12-26 Luis Machado <luisgpm@br.ibm.com>
* dwarf2-frame.c (execute_cfa_program): Call dwarf2_restore_rule

View File

@ -5007,11 +5007,11 @@ read_base_type (struct die_info *die, struct dwarf2_cu *cu)
type_flags |= TYPE_FLAG_UNSIGNED;
break;
case DW_ATE_signed_char:
if (cu->language == language_ada && cu->language == language_m2)
if (cu->language == language_ada || cu->language == language_m2)
code = TYPE_CODE_CHAR;
break;
case DW_ATE_unsigned_char:
if (cu->language == language_ada && cu->language == language_m2)
if (cu->language == language_ada || cu->language == language_m2)
code = TYPE_CODE_CHAR;
type_flags |= TYPE_FLAG_UNSIGNED;
break;