summaryrefslogtreecommitdiffstats
path: root/gcc/c-omp.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/c-omp.c')
-rw-r--r--gcc/c-omp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-omp.c b/gcc/c-omp.c
index 0bae32140d8..115d7811d1e 100644
--- a/gcc/c-omp.c
+++ b/gcc/c-omp.c
@@ -76,7 +76,7 @@ c_finish_omp_barrier (void)
tree x;
x = built_in_decls[BUILT_IN_GOMP_BARRIER];
- x = build_function_call_expr (x, NULL);
+ x = build_call_expr (x, 0);
add_stmt (x);
}
@@ -150,7 +150,7 @@ c_finish_omp_flush (void)
tree x;
x = built_in_decls[BUILT_IN_SYNCHRONIZE];
- x = build_function_call_expr (x, NULL);
+ x = build_call_expr (x, 0);
add_stmt (x);
}
OpenPOWER on IntegriCloud