BasicBlock::new(0) -> START_BLOCK [no functional changes]

This commit is contained in:
Scott McMurray 2023-02-16 18:46:25 -08:00
parent 5348a89a77
commit c946494c34
6 changed files with 12 additions and 12 deletions

View file

@ -496,7 +496,7 @@ impl UsedLocals {
self.increment = false;
// The location of the statement is irrelevant.
let location = Location { block: START_BLOCK, statement_index: 0 };
let location = Location::START;
self.visit_statement(statement, location);
}