[Openmp-commits] [openmp] r250066 - [OPENMP][TESTSUITE] Undefined variable in test omp_task_final.c
Jonathan Peyton via Openmp-commits
openmp-commits at lists.llvm.org
Mon Oct 12 10:01:06 PDT 2015
Author: jlpeyton
Date: Mon Oct 12 12:01:05 2015
New Revision: 250066
URL: http://llvm.org/viewvc/llvm-project?rev=250066&view=rev
Log:
[OPENMP][TESTSUITE] Undefined variable in test omp_task_final.c
Patch by Alexey Bataev
Differential Revision: http://reviews.llvm.org/D13661
Modified:
openmp/trunk/runtime/test/tasking/omp_task_final.c
Modified: openmp/trunk/runtime/test/tasking/omp_task_final.c
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/test/tasking/omp_task_final.c?rev=250066&r1=250065&r2=250066&view=diff
==============================================================================
--- openmp/trunk/runtime/test/tasking/omp_task_final.c (original)
+++ openmp/trunk/runtime/test/tasking/omp_task_final.c Mon Oct 12 12:01:05 2015
@@ -9,7 +9,7 @@ int test_omp_task_final()
int tids[NUM_TASKS];
int includedtids[NUM_TASKS];
int i;
- int error;
+ int error = 0;
#pragma omp parallel
{
#pragma omp single
More information about the Openmp-commits
mailing list