From d9945c8842ed2731285a7be0b80ea6f3e50190ee Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Mon, 11 Nov 2019 09:18:46 +0100 Subject: [PATCH] Assert 'offset2' instead of 'offset' in 'gcc/gimplify.c:gimplify_scan_omp_clauses' ... to fix a long-time typo/copy'n'past-o. gcc/ * gimplify.c (gimplify_scan_omp_clauses): Assert 'offset2' instead of 'offset'. From-SVN: r278038 --- gcc/ChangeLog | 3 +++ gcc/gimplify.c | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a1e928bf804..ca0cebc2018 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2019-11-11 Thomas Schwinge + * gimplify.c (gimplify_scan_omp_clauses): Assert 'offset2' instead + of 'offset'. + * Makefile.in (LANG_CONFIGUREFRAGS): Define. (config.status): Use/depend on it. * configure.ac (all_lang_configurefrags): Track, 'AC_SUBST'. diff --git a/gcc/gimplify.c b/gcc/gimplify.c index 5fa0ba6dda6..2bc41cf98ae 100644 --- a/gcc/gimplify.c +++ b/gcc/gimplify.c @@ -8890,8 +8890,8 @@ gimplify_scan_omp_clauses (tree *list_p, gimple_seq *pre_p, break; if (scp) continue; - gcc_assert (offset == NULL_TREE - || poly_int_tree_p (offset)); + gcc_assert (offset2 == NULL_TREE + || poly_int_tree_p (offset2)); tree d1 = OMP_CLAUSE_DECL (*sc); tree d2 = OMP_CLAUSE_DECL (c); while (TREE_CODE (d1) == ARRAY_REF) -- 2.30.2