From: Taewook Oh Date: Mon, 13 Feb 2017 21:12:27 +0000 (+0000) Subject: Address post-commit comments for https://reviews.llvm.org/D29596. NFCI. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=47946adf7753909a580d04ddd5b2bd5a85f6c7a0;p=llvm 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 --- diff --git a/lib/CodeGen/MachineBasicBlock.cpp b/lib/CodeGen/MachineBasicBlock.cpp index 2468bfa2a51..4e91bb07aed 100644 --- a/lib/CodeGen/MachineBasicBlock.cpp +++ b/lib/CodeGen/MachineBasicBlock.cpp @@ -1155,7 +1155,7 @@ MachineBasicBlock::findDebugLoc(instr_iterator MBBI) { /// Return UnknownLoc if there is none. DebugLoc MachineBasicBlock::findBranchDebugLoc() { - DebugLoc DL {}; + DebugLoc DL; auto TI = getFirstTerminator(); while (TI != end() && !TI->isBranch()) ++TI;