Skip to content

Commit 35a1a0f

Browse files
committed
Remove an unnecessary comment that makes clang-format over-indent the matching }
The comment says the same thing as the line it describes
1 parent 92ff5df commit 35a1a0f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lldb/source/Expression/IRInterpreter.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1642,9 +1642,7 @@ bool IRInterpreter::Interpret(llvm::Module &module, llvm::Function &function,
16421642
// Void return type
16431643
if (returnType->isVoidTy()) {
16441644
// Cant assign to void types, so we leave the frame untouched
1645-
} else
1646-
// Integer or pointer return type
1647-
if (returnType->isIntegerTy() || returnType->isPointerTy()) {
1645+
} else if (returnType->isIntegerTy() || returnType->isPointerTy()) {
16481646
// Get the encapsulated return value
16491647
lldb::ValueObjectSP retVal = call_plan_sp.get()->GetReturnValueObject();
16501648

0 commit comments

Comments
 (0)