diff options
author | Kelvin Li <kkwli0@gmail.com> | 2016-12-15 17:55:32 +0000 |
---|---|---|
committer | Kelvin Li <kkwli0@gmail.com> | 2016-12-15 17:55:32 +0000 |
commit | 51336dd0b4f0d91113b3553591587b2dbda13090 (patch) | |
tree | 3f938aaf7314ea40d2f1de5464c1fc8652e6f12f /clang/lib/CodeGen | |
parent | 94752697ee9e39dfe8465f1ae62e77e61ecc03aa (diff) | |
download | bcm5719-llvm-51336dd0b4f0d91113b3553591587b2dbda13090.tar.gz bcm5719-llvm-51336dd0b4f0d91113b3553591587b2dbda13090.zip |
Fix typo in comment. NFC.
llvm-svn: 289836
Diffstat (limited to 'clang/lib/CodeGen')
-rw-r--r-- | clang/lib/CodeGen/CGStmtOpenMP.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGStmtOpenMP.cpp b/clang/lib/CodeGen/CGStmtOpenMP.cpp index 6cd4d119459..af47f2da6da 100644 --- a/clang/lib/CodeGen/CGStmtOpenMP.cpp +++ b/clang/lib/CodeGen/CGStmtOpenMP.cpp @@ -3439,7 +3439,7 @@ static void emitCommonOMPTeamsDirective(CodeGenFunction &CGF, } void CodeGenFunction::EmitOMPTeamsDirective(const OMPTeamsDirective &S) { - // Emit parallel region as a standalone region. + // Emit teams region as a standalone region. auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &) { OMPPrivateScope PrivateScope(CGF); (void)CGF.EmitOMPFirstprivateClause(S, PrivateScope); |