aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/CodeGen/CGOpenMPRuntime.cpp
diff options
context:
space:
mode:
authorDave Pagan <dave.pagan@amd.com>2023-12-14 10:24:28 -0600
committerDave Pagan <dave.pagan@amd.com>2024-03-19 11:01:21 -0500
commit2ec4fd7a4fc6de0e0b9fc4dd9960806594faf33a (patch)
treee2d647dd14e49656ca07809399b0064f18a9e54f /clang/lib/CodeGen/CGOpenMPRuntime.cpp
parent85c9855fbab9a99056fc47ee05657aa3242e1829 (diff)
downloadllvm-myfork/main.zip
llvm-myfork/main.tar.gz
llvm-myfork/main.tar.bz2
Fix formatting issues found by code formatting check in build.myfork/main
Diffstat (limited to 'clang/lib/CodeGen/CGOpenMPRuntime.cpp')
-rw-r--r--clang/lib/CodeGen/CGOpenMPRuntime.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CGOpenMPRuntime.cpp b/clang/lib/CodeGen/CGOpenMPRuntime.cpp
index ac971cd..442662d 100644
--- a/clang/lib/CodeGen/CGOpenMPRuntime.cpp
+++ b/clang/lib/CodeGen/CGOpenMPRuntime.cpp
@@ -2658,9 +2658,9 @@ void CGOpenMPRuntime::emitForStaticFinish(CodeGenFunction &CGF,
isOpenMPDistributeDirective(DKind) ||
(DKind == OMPD_target_teams_loop)
? OMP_IDENT_WORK_DISTRIBUTE
- : isOpenMPLoopDirective(DKind)
- ? OMP_IDENT_WORK_LOOP
- : OMP_IDENT_WORK_SECTIONS),
+ : isOpenMPLoopDirective(DKind)
+ ? OMP_IDENT_WORK_LOOP
+ : OMP_IDENT_WORK_SECTIONS),
getThreadID(CGF, Loc)};
auto DL = ApplyDebugLocation::CreateDefaultArtificial(CGF, Loc);
if (isOpenMPDistributeDirective(DKind) &&