Skip to content

Commit 65976dd

Browse files
committed
fix formatting
1 parent 90d4c6d commit 65976dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Target/AMDGPU/AMDGPUUnifyDivergentExitNodes.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,8 +225,8 @@ bool AMDGPUUnifyDivergentExitNodesImpl::run(Function &F, DominatorTree *DT,
225225

226226
ConstantInt *BoolTrue = ConstantInt::getTrue(F.getContext());
227227
if (DummyReturnBB == nullptr) {
228-
DummyReturnBB = BasicBlock::Create(F.getContext(),
229-
"DummyReturnBlock", &F);
228+
DummyReturnBB =
229+
BasicBlock::Create(F.getContext(), "DummyReturnBlock", &F);
230230
Type *RetTy = F.getReturnType();
231231
Value *RetVal = RetTy->isVoidTy() ? nullptr : PoisonValue::get(RetTy);
232232
ReturnInst::Create(F.getContext(), RetVal, DummyReturnBB);

0 commit comments

Comments
 (0)