LLVM OpenMP
20.0.0git
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
c
d
e
g
h
i
m
n
p
r
s
t
u
Functions
c
d
e
g
i
m
n
p
r
s
u
Variables
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
~
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
w
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
Typedefs
Enumerations
Enumerator
Related Functions
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
Typedefs
_
a
b
c
d
e
i
k
l
m
n
o
p
r
t
u
Enumerations
_
b
c
d
f
k
l
n
o
s
t
Enumerator
_
a
b
c
d
e
f
k
l
n
o
p
r
s
t
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
runtime
test
transform
unroll
heuristic_intfor.c
Go to the documentation of this file.
1
// RUN: %libomp-compile-and-run | FileCheck %s --match-full-lines
2
3
#ifndef HEADER
4
#define HEADER
5
6
#include <stdlib.h>
7
#include <stdio.h>
8
9
int
main
() {
10
printf(
"do\n"
);
11
#pragma omp unroll
12
for
(
int
i
= 7;
i
< 19;
i
+= 3)
13
printf(
"i=%d\n"
,
i
);
14
printf(
"done\n"
);
15
return
EXIT_SUCCESS;
16
}
17
18
#endif
/* HEADER */
19
20
// CHECK: do
21
// CHECK-NEXT: i=7
22
// CHECK-NEXT: i=10
23
// CHECK-NEXT: i=13
24
// CHECK-NEXT: i=16
25
// CHECK-NEXT: done
main
int main()
Definition:
heuristic_intfor.c:9
i
#define i
Definition:
kmp_stub.cpp:87
Generated on Sat Jun 7 2025 20:44:01 for LLVM OpenMP by
1.9.6