Hi,
I want clang to parse parallel_for loop construct.
this loop has similar syntax like for loop
parallel_for( init ; cond ; incr )
{
/body/
}
what are the file and structure i have to modify for parsing this kind of loop
It will be similar like ForStmt class, how can I add ParallelForStmt class into
existing clang framework