Minor fix-up for commit d50e9f17fffa9b047dcf02eb9e1fe499178a0f02
"openmp: Add GOMP_reduction_start and GOMP_reduction_end", which did:
[...]
* atomic.c (GOMP_reduction_start): New function.
(GOMP_reduction_end): New function.
[...]
libgomp/
* libgomp_g.h (GOMP_reduction_start, GOMP_reduction_end): Sort
correctly.
---
libgomp/libgomp_g.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libgomp/libgomp_g.h b/libgomp/libgomp_g.h
index 892ad3a5581..a3097d5b093 100644
--- a/libgomp/libgomp_g.h
+++ b/libgomp/libgomp_g.h
@@ -37,6 +37,8 @@
extern void GOMP_atomic_start (void);
extern void GOMP_atomic_end (void);
+extern void GOMP_reduction_start (void);
+extern void GOMP_reduction_end (void);
/* barrier.c */
@@ -51,8 +53,6 @@ extern void GOMP_critical_start (void);
extern void GOMP_critical_end (void);
extern void GOMP_critical_name_start (void **);
extern void GOMP_critical_name_end (void **);
-extern void GOMP_reduction_start (void);
-extern void GOMP_reduction_end (void);
/* loop.c */
--
2.53.0