]> gcc.gnu.org Git - gcc.git/blobdiff - gcc/c-parse.in
* Clean up usages of TREE_INT_CST_LOW.
[gcc.git] / gcc / c-parse.in
index dc6f34020498b69b84bf15858068eacf6ff5325c..f1169ab412f3ace0ab934bc1c37922b6c8cca4a4 100644 (file)
@@ -235,7 +235,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)
This page took 0.085422 seconds and 5 git commands to generate.