Commit d7cb230a by Jakub Jelinek Committed by Jakub Jelinek

re PR debug/65771 (ICE (in loc_list_from_tree, at dwarf2out.c:14964) on arm-linux-gnueabihf)

	PR debug/65771
	* dwarf2out.c (loc_list_from_tree): Return NULL
	for DEBUG_EXPR_DECL.

	* gcc.dg/debug/pr65771.c: New test.

From-SVN: r222166
parent 86f46e39
2015-04-17 Jakub Jelinek <jakub@redhat.com>
PR debug/65771
* dwarf2out.c (loc_list_from_tree): Return NULL
for DEBUG_EXPR_DECL.
2015-04-17 Christian Bruel <christian.bruel@st.com>
* ipa-inline.c (can_inline_edge_p): Allow inlining of functions with
......
......@@ -14642,6 +14642,7 @@ loc_list_from_tree (tree loc, int want_address,
case TARGET_MEM_REF:
case SSA_NAME:
case DEBUG_EXPR_DECL:
return NULL;
case COMPOUND_EXPR:
......
2015-04-17 Jakub Jelinek <jakub@redhat.com>
PR debug/65771
* gcc.dg/debug/pr65771.c: New test.
2015-04-16 H.J. Lu <hongjiu.lu@intel.com>
* gcc.target/i386/mpx/alloca-1-lbv.c (mpx_test): Replace
......
/* PR debug/65771 */
/* { dg-do link } */
/* { dg-require-effective-target tls } */
struct S { int s; int t; };
__thread struct S a[10];
int b;
int
main ()
{
int c = a[b].t;
(void) c;
return 0;
}
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