An error occurred while loading the file. Please try again.
-
Dominik Thoennes authored43e4e35f
Forked from
waLBerla / waLBerla
308 commits behind the upstream repository.
TestClangOpenMPBug.cpp 173 B
#include <iostream>
int main()
{
int min = -10;
#pragma omp parallel for
for (int i = min; i <= 10; ++i)
{
std::cout << i << std::endl;
}
return 0;
}