arm.c (arm_const_not_ok_for_debug_p): Use VAR_P.

2016-10-30  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>

	* config/arm/arm.c (arm_const_not_ok_for_debug_p): Use VAR_P.

From-SVN: r241686
This commit is contained in:
Prathamesh Kulkarni 2016-10-30 14:06:16 +00:00 committed by Prathamesh Kulkarni
parent 015415fa9d
commit aee707743d
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2016-10-30 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
* config/arm/arm.c (arm_const_not_ok_for_debug_p): Use VAR_P.
2016-10-29 Jakub Jelinek <jakub@redhat.com>
PR rtl-optimization/77919

View file

@ -30155,9 +30155,9 @@ arm_const_not_ok_for_debug_p (rtx p)
&& GET_CODE (XEXP (p, 0)) == SYMBOL_REF
&& (decl_op0 = SYMBOL_REF_DECL (XEXP (p, 0))))
{
if ((TREE_CODE (decl_op1) == VAR_DECL
if ((VAR_P (decl_op1)
|| TREE_CODE (decl_op1) == CONST_DECL)
&& (TREE_CODE (decl_op0) == VAR_DECL
&& (VAR_P (decl_op0)
|| TREE_CODE (decl_op0) == CONST_DECL))
return (get_variable_section (decl_op1, false)
!= get_variable_section (decl_op0, false));