mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-03 16:03:21 +00:00
Fix format. NFC
llvm-svn: 290673
This commit is contained in:
parent
8c19083f76
commit
26fd21ab80
@ -2005,17 +2005,20 @@ void CodeGenFunction::EmitOMPTeamsDistributeParallelForDirective(
|
||||
|
||||
void CodeGenFunction::EmitOMPTargetTeamsDirective(
|
||||
const OMPTargetTeamsDirective &S) {
|
||||
CGM.getOpenMPRuntime().emitInlinedDirective(*this, OMPD_target_teams,
|
||||
[&S](CodeGenFunction &CGF, PrePostActionTy &) {
|
||||
CGF.EmitStmt(cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt());
|
||||
CGM.getOpenMPRuntime().emitInlinedDirective(
|
||||
*this, OMPD_target_teams, [&S](CodeGenFunction &CGF, PrePostActionTy &) {
|
||||
CGF.EmitStmt(
|
||||
cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt());
|
||||
});
|
||||
}
|
||||
|
||||
void CodeGenFunction::EmitOMPTargetTeamsDistributeDirective(
|
||||
const OMPTargetTeamsDistributeDirective &S) {
|
||||
CGM.getOpenMPRuntime().emitInlinedDirective(*this, OMPD_target_teams_distribute,
|
||||
CGM.getOpenMPRuntime().emitInlinedDirective(
|
||||
*this, OMPD_target_teams_distribute,
|
||||
[&S](CodeGenFunction &CGF, PrePostActionTy &) {
|
||||
CGF.EmitStmt(cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt());
|
||||
CGF.EmitStmt(
|
||||
cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt());
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user