summaryrefslogtreecommitdiffstats
path: root/openmp/runtime/src/kmp_csupport.c
diff options
context:
space:
mode:
authorAndrey Churbanov <Andrey.Churbanov@intel.com>2015-02-20 18:09:27 +0000
committerAndrey Churbanov <Andrey.Churbanov@intel.com>2015-02-20 18:09:27 +0000
commit723a6b64bb6709b5241c478d324041887ff96ac0 (patch)
treeb0d87706656f776c6020336109ffb6d063ac22f5 /openmp/runtime/src/kmp_csupport.c
parent6b07a1c6ee50dcf4d52a4a314b4774347f9b22c0 (diff)
downloadbcm5719-llvm-723a6b64bb6709b5241c478d324041887ff96ac0.tar.gz
bcm5719-llvm-723a6b64bb6709b5241c478d324041887ff96ac0.zip
Removed unused varargs from __kmpc_flush function.
llvm-svn: 230032
Diffstat (limited to 'openmp/runtime/src/kmp_csupport.c')
-rw-r--r--openmp/runtime/src/kmp_csupport.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/openmp/runtime/src/kmp_csupport.c b/openmp/runtime/src/kmp_csupport.c
index 8e3d7f15fa6..0b6f3935a64 100644
--- a/openmp/runtime/src/kmp_csupport.c
+++ b/openmp/runtime/src/kmp_csupport.c
@@ -540,17 +540,13 @@ __kmpc_end_serialized_parallel(ident_t *loc, kmp_int32 global_tid)
/*!
@ingroup SYNCHRONIZATION
@param loc source location information.
-@param ... pointers to the variables to be synchronized.
-Execute <tt>flush</tt>. The pointers to the variables to be flushed
-need not actually be passed, (indeed unless this is a zero terminated
-list they can't be since there's no count here so we don't know how
-many there are!). This is implemented as a full memory fence. (Though
+Execute <tt>flush</tt>. This is implemented as a full memory fence. (Though
depending on the memory ordering convention obeyed by the compiler
even that may not be necessary).
*/
void
-__kmpc_flush(ident_t *loc, ...)
+__kmpc_flush(ident_t *loc)
{
KC_TRACE( 10, ("__kmpc_flush: called\n" ) );
OpenPOWER on IntegriCloud