* Clean up usages of TREE_INT_CST_LOW.
[gcc.git] / gcc / objc / objc-parse.c
index 30b3c776ca85850a2314d5e21232358a8a366b42..e34d7b28341ad68be7cab0a43b1792ff1f1fd431 100644 (file)
@@ -130,7 +130,7 @@ static int undeclared_variable_notice;
        build_int_2 (pedantic | (warn_pointer_arith << 1), 0)
 #define RESTORE_WARN_FLAGS(tval) \
   do {                                     \
-    int val = TREE_INT_CST_LOW (tval);     \
+    int val = tree_low_cst (tval, 0);     \
     pedantic = val & 1;                    \
     warn_pointer_arith = (val >> 1) & 1;   \
   } while (0)