summaryrefslogtreecommitdiffstats
path: root/openmp/runtime/test/parallel/omp_parallel_firstprivate.c
diff options
context:
space:
mode:
authorJonathan Peyton <jonathan.l.peyton@intel.com>2016-05-17 21:08:52 +0000
committerJonathan Peyton <jonathan.l.peyton@intel.com>2016-05-17 21:08:52 +0000
commit373107699709f6fb06992bf6b76274091570aaf2 (patch)
tree9ebd9bcac287767334e2623bcc0514667c76a1da /openmp/runtime/test/parallel/omp_parallel_firstprivate.c
parent6323ddf99c677c560db4402f190f2bd2156e3cca (diff)
downloadbcm5719-llvm-373107699709f6fb06992bf6b76274091570aaf2.tar.gz
bcm5719-llvm-373107699709f6fb06992bf6b76274091570aaf2.zip
Remove trailing whitespace from tests
llvm-svn: 269841
Diffstat (limited to 'openmp/runtime/test/parallel/omp_parallel_firstprivate.c')
-rw-r--r--openmp/runtime/test/parallel/omp_parallel_firstprivate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openmp/runtime/test/parallel/omp_parallel_firstprivate.c b/openmp/runtime/test/parallel/omp_parallel_firstprivate.c
index 355a8b7bd2b..dbee76c639a 100644
--- a/openmp/runtime/test/parallel/omp_parallel_firstprivate.c
+++ b/openmp/runtime/test/parallel/omp_parallel_firstprivate.c
@@ -18,7 +18,7 @@ int test_omp_parallel_firstprivate()
{
/*printf("sum1=%d\n",sum1);*/
int i;
- #pragma omp for
+ #pragma omp for
for (i = 1; i < 1000; i++) {
sum1 = sum1 + i;
} /*end of for*/
@@ -27,7 +27,7 @@ int test_omp_parallel_firstprivate()
sum = sum + sum1;
num_threads++;
} /*end of critical*/
- } /* end of parallel*/
+ } /* end of parallel*/
known_sum = (999 * 1000) / 2 + 7 * num_threads;
return (known_sum == sum);
}
OpenPOWER on IntegriCloud