Skip to content
This repository was archived by the owner on Mar 28, 2020. It is now read-only.

Commit cf6e906

Browse files
taewookohadrian-prantl
authored andcommitted
Address post-commit comments for https://reviews.llvm.org/D29596. NFCI.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@294985 91177308-0d34-0410-b5e6-96231b3b80d8 (cherry picked from commit 47946ad)
1 parent db79362 commit cf6e906

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/CodeGen/MachineBasicBlock.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1149,7 +1149,7 @@ MachineBasicBlock::findDebugLoc(instr_iterator MBBI) {
11491149
/// Return UnknownLoc if there is none.
11501150
DebugLoc
11511151
MachineBasicBlock::findBranchDebugLoc() {
1152-
DebugLoc DL {};
1152+
DebugLoc DL;
11531153
auto TI = getFirstTerminator();
11541154
while (TI != end() && !TI->isBranch())
11551155
++TI;

0 commit comments

Comments
 (0)