Skip to content

Commit 013a99d

Browse files
sarnexIanWood1
authored andcommitted
[clang][NFC] Fix some clang-format mistakes (llvm#138036)
Fixes for llvm#138000 Signed-off-by: Sarnie, Nick <[email protected]>
1 parent 69ec5b2 commit 013a99d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

clang/lib/CodeGen/CGCall.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3520,8 +3520,7 @@ static llvm::Value *tryEmitFusedAutoreleaseOfResult(CodeGenFunction &CGF,
35203520
// Look for:
35213521
// %generator = call i8* @objc_retain(i8* %originalResult)
35223522
// or
3523-
// %generator = call i8* @objc_retainAutoreleasedReturnValue(i8*
3524-
// %originalResult)
3523+
// %generator = call i8* @objc_retainAutoreleasedReturnValue(i8* %originalResult)
35253524
llvm::CallInst *call = dyn_cast<llvm::CallInst>(generator);
35263525
if (!call)
35273526
return nullptr;
@@ -3997,7 +3996,7 @@ void CodeGenFunction::EmitFunctionEpilog(const CGFunctionInfo &FI,
39973996
RV = SI->getValueOperand();
39983997
SI->eraseFromParent();
39993998

4000-
// Otherwise, we have to do a simple load.
3999+
// Otherwise, we have to do a simple load.
40014000
} else {
40024001
RV = Builder.CreateLoad(ReturnValue);
40034002
}

0 commit comments

Comments
 (0)