arm.c (arm_const_not_ok_for_debug_p): Use VAR_P.
authorPrathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
Sun, 30 Oct 2016 14:06:16 +0000 (14:06 +0000)
committerPrathamesh Kulkarni <prathamesh3492@gcc.gnu.org>
Sun, 30 Oct 2016 14:06:16 +0000 (14:06 +0000)
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

gcc/ChangeLog
gcc/config/arm/arm.c

index 7e15933..27f4738 100644 (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
index f47edba..dd8d5e5 100644 (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));