diff options
Diffstat (limited to 'gcc/langhooks.c')
-rw-r--r-- | gcc/langhooks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/langhooks.c b/gcc/langhooks.c index 7fca436e89d..5b0e09f471c 100644 --- a/gcc/langhooks.c +++ b/gcc/langhooks.c @@ -577,7 +577,7 @@ lhd_omp_predetermined_sharing (tree decl ATTRIBUTE_UNUSED) tree lhd_omp_assignment (tree clause ATTRIBUTE_UNUSED, tree dst, tree src) { - return build2 (MODIFY_EXPR, void_type_node, dst, src); + return build2 (GIMPLE_MODIFY_STMT, void_type_node, dst, src); } /* Register language specific type size variables as potentially OpenMP |