Commit 372e2615 by Jakub Jelinek Committed by Jakub Jelinek

re PR debug/84456 (gcc.dg/guality/pr49888.c fail)

	PR debug/84456
	* dwarf2out.c (dw_loc_list): If list && loc_list->first->next, call
	gen_llsym, otherwise call maybe_gen_llsym.

From-SVN: r258371
parent 80bac2eb
2018-03-08 Jakub Jelinek <jakub@redhat.com> 2018-03-08 Jakub Jelinek <jakub@redhat.com>
PR debug/84456
* dwarf2out.c (dw_loc_list): If list && loc_list->first->next, call
gen_llsym, otherwise call maybe_gen_llsym.
PR inline-asm/84742 PR inline-asm/84742
* recog.c (asm_operand_ok): Return 0 if multi-character constraint * recog.c (asm_operand_ok): Return 0 if multi-character constraint
has ',' character inside of it. has ',' character inside of it.
......
...@@ -17079,7 +17079,10 @@ dw_loc_list (var_loc_list *loc_list, tree decl, int want_address) ...@@ -17079,7 +17079,10 @@ dw_loc_list (var_loc_list *loc_list, tree decl, int want_address)
representable, we don't want to pretend a single entry that was representable, we don't want to pretend a single entry that was
applies to the entire scope in which the variable is applies to the entire scope in which the variable is
available. */ available. */
maybe_gen_llsym (list); if (list && loc_list->first->next)
gen_llsym (list);
else
maybe_gen_llsym (list);
return list; return list;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment