You've already forked linux-packaging-mono
acceptance-tests
data
debian
docs
external
Newtonsoft.Json
api-doc-tools
api-snapshot
aspnetwebstack
bdwgc
binary-reference-assemblies
bockbuild
boringssl
cecil
cecil-legacy
corefx
corert
helix-binaries
ikdasm
ikvm
illinker-test-assets
linker
llvm-project
clang
clang-tools-extra
compiler-rt
eng
libcxx
libcxxabi
libunwind
lld
lldb
llvm
nuget
openmp
cmake
libomptarget
offload
runtime
cmake
doc
src
test
api
atomic
barrier
critical
env
flush
lock
master
misc_bugs
cancellation_for_sections.c
many-microtask-args.c
omp_foreign_thread_team_reuse.c
teams-no-par.c
teams-reduction.c
ompt
parallel
tasking
threadprivate
worksharing
CMakeLists.txt
lit.cfg
lit.site.cfg.in
omp_my_sleep.h
omp_testsuite.h
tools
.clang-format
CMakeLists.txt
README.txt
www
.arcconfig
.gitignore
CMakeLists.txt
CREDITS.txt
LICENSE.txt
README.rst
polly
Directory.Build.props
Directory.Build.targets
NuGet.config
azure-pipelines.yml
build.cmd
build.sh
dir.common.props
global.json
llvm.proj
mxe-Win64.cmake.in
nuget-buildtasks
nunit-lite
roslyn-binaries
rx
xunit-binaries
how-to-bump-roslyn-binaries.md
ikvm-native
llvm
m4
man
mcs
mono
msvc
netcore
po
runtime
samples
scripts
support
tools
COPYING.LIB
LICENSE
Makefile.am
Makefile.in
NEWS
README.md
acinclude.m4
aclocal.m4
autogen.sh
code_of_conduct.md
compile
config.guess
config.h.in
config.rpath
config.sub
configure.REMOVED.git-id
configure.ac.REMOVED.git-id
depcomp
install-sh
ltmain.sh.REMOVED.git-id
missing
mkinstalldirs
mono-uninstalled.pc.in
test-driver
winconfig.h
40 lines
727 B
C
40 lines
727 B
C
![]() |
// RUN: %libomp-compile-and-run
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
|
||
|
int i;
|
||
|
int i1 = 0;
|
||
|
int i2 = 1;
|
||
|
int i3 = 2;
|
||
|
int i4 = 3;
|
||
|
int i5 = 4;
|
||
|
int i6 = 6;
|
||
|
int i7 = 7;
|
||
|
int i8 = 8;
|
||
|
int i9 = 9;
|
||
|
int i10 = 10;
|
||
|
int i11 = 11;
|
||
|
int i12 = 12;
|
||
|
int i13 = 13;
|
||
|
int i14 = 14;
|
||
|
int i15 = 15;
|
||
|
int i16 = 16;
|
||
|
|
||
|
int r = 0;
|
||
|
#pragma omp parallel for firstprivate(i1, i2, i3, i4, i5, i6, i7, i8, i9, i10, i11, i12, i13, i14, i15, i16) reduction(+:r)
|
||
|
for (i = 0; i < i16; i++) {
|
||
|
r += i + i1 + i2 + i3 + i4 + i5 + i6 + i7 + i8 + i9 + i10 + i11 + i12 + i13 + i14 + i15 + i16;
|
||
|
}
|
||
|
|
||
|
int rf = 2216;
|
||
|
if (r != rf) {
|
||
|
fprintf(stderr, "r should be %d but instead equals %d\n", rf, r);
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|