diff options
author | Jason Merrill <jason@redhat.com> | 2017-06-11 01:29:14 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2017-06-11 01:29:14 -0400 |
commit | a01f151f1e03f9b2bf4148fc3f18f114bb6806b0 (patch) | |
tree | e673d9359df0faf119e7f7fa476fdb87ce07f1fa /gcc/omp-expand.c | |
parent | dc77253832d17c57f385695119cc5344555bd913 (diff) | |
download | gcc-a01f151f1e03f9b2bf4148fc3f18f114bb6806b0.zip gcc-a01f151f1e03f9b2bf4148fc3f18f114bb6806b0.tar.gz gcc-a01f151f1e03f9b2bf4148fc3f18f114bb6806b0.tar.bz2 |
tree.h (id_equal): New.
* tree.h (id_equal): New.
* dwarf2out.c, hsa-gen.c, ipa-devirt.c, omp-expand.c,
omp-simd-clone.c, read-rtl-function.c, tree-chkp.c, tree.c: Use it
instead of strcmp of IDENTIFIER_POINTER.
c-family/
* c-ada-spec.c, c-pragma.c: Use it.
cp/
* cp-tree.h, decl2.c, mangle.c, parser.c, pt.c, semantics.c: Use it.
From-SVN: r249103
Diffstat (limited to 'gcc/omp-expand.c')
-rw-r--r-- | gcc/omp-expand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/omp-expand.c b/gcc/omp-expand.c index 7a7c747..53d3d3f 100644 --- a/gcc/omp-expand.c +++ b/gcc/omp-expand.c @@ -4366,9 +4366,9 @@ expand_cilk_for (struct omp_region *region, struct omp_for_data *fd) tree t, low_val = NULL_TREE, high_val = NULL_TREE; for (t = DECL_ARGUMENTS (child_fndecl); t; t = TREE_CHAIN (t)) { - if (!strcmp (IDENTIFIER_POINTER (DECL_NAME (t)), "__high")) + if (id_equal (DECL_NAME (t), "__high")) high_val = t; - else if (!strcmp (IDENTIFIER_POINTER (DECL_NAME (t)), "__low")) + else if (id_equal (DECL_NAME (t), "__low")) low_val = t; } gcc_assert (low_val && high_val); |