Skip to content

Commit 83091fa

Browse files
committed
Fix formatting issues
1 parent 568964e commit 83091fa

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

llvm/include/llvm/Frontend/OpenMP/OMPIRBuilder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2389,7 +2389,7 @@ class OpenMPIRBuilder {
23892389
/// \return an error, if any were triggered during execution.
23902390
using TargetTaskBodyCallbackTy =
23912391
function_ref<Error(Value *DeviceID, Value *RTLoc,
2392-
IRBuilderBase::InsertPoint TargetTaskAllocaIP)>;
2392+
IRBuilderBase::InsertPoint TargetTaskAllocaIP)>;
23932393

23942394
/// Generate a target-task for the target construct
23952395
///

llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7315,8 +7315,9 @@ emitTargetCall(OpenMPIRBuilder &OMPBuilder, IRBuilderBase &Builder,
73157315

73167316
OpenMPIRBuilder::TargetKernelArgs KArgs;
73177317

7318-
auto TaskBodyCB = [&](Value *DeviceID, Value *RTLoc,
7319-
IRBuilderBase::InsertPoint TargetTaskAllocaIP) -> Error {
7318+
auto TaskBodyCB =
7319+
[&](Value *DeviceID, Value *RTLoc,
7320+
IRBuilderBase::InsertPoint TargetTaskAllocaIP) -> Error {
73207321
llvm::OpenMPIRBuilder::InsertPointOrErrorTy AfterIP = [&]() {
73217322
// emitKernelLaunch makes the necessary runtime call to offload the
73227323
// kernel. We then outline all that code into a separate function

0 commit comments

Comments
 (0)