Skip to content

Commit c8290ce

Browse files
committed
whitespace changes
1 parent 33eaf39 commit c8290ce

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clang/lib/CodeGen/CodeGenFunction.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,15 +434,16 @@ void CodeGenFunction::EmitContractStmt(const ContractStmt &S) {
434434
EmitHandleContractViolationCall(
435435
S, ContractViolationDetection::PredicateFailed);
436436
}
437+
437438
if (Semantic != ContractEvaluationSemantic::Observe) {
438439
llvm::CallInst *TrapCall = EmitTrapCall(llvm::Intrinsic::trap);
439440
TrapCall->setDoesNotReturn();
440441
TrapCall->setDoesNotThrow();
441442
Builder.CreateUnreachable();
442443
Builder.ClearInsertionPoint();
443444
}
444-
Builder.CreateBr(End);
445445

446+
Builder.CreateBr(End);
446447
Builder.SetInsertPoint(End);
447448

448449
if (Semantic != ContractEvaluationSemantic::Observe) {

0 commit comments

Comments
 (0)