This is an archive of the discontinued LLVM Phabricator instance.

[OPENMP] Codegen for 'private' clause in 'single' directive.
ClosedPublic

Authored by ABataev on Apr 23 2015, 9:44 PM.

Details

Summary

Emit the following code for 'single' directive with 'private' clause:

if (@__kmpc_single()) {
<default init for privates>
@__kmpc_end_single();
}

Diff Detail

Repository
rL LLVM

Event Timeline

ABataev updated this revision to Diff 24353.Apr 23 2015, 9:44 PM
ABataev retitled this revision from to [OPENMP] Codegen for 'private' clause in 'single' directive..
ABataev updated this object.
ABataev edited the test plan for this revision. (Show Details)
ABataev added reviewers: rjmccall, hfinkel.
ABataev added subscribers: fraggamuffin, ejstotzer, Unknown Object (MLST).
This revision was automatically updated to reflect the committed changes.