mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-03 17:51:57 +00:00
* dwarf2read.c (read_base_type): Fix obvious &&/|| confusion.
This commit is contained in:
parent
a6a5a94583
commit
1760d9d580
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user