LLVM OpenMP 22.0.0git
control_tool_no_ompt_support.c
Go to the documentation of this file.
1// clang-format off
2// RUN: %libomp-compile-and-run
3// clang-format on
4
5#include <omp.h>
6
7int main() {
8#pragma omp parallel num_threads(1)
9 {
10 omp_control_tool(omp_control_tool_flush, 1, NULL);
11 }
12
13 return 0;
14}