From 4d35f9e10e016ce896667ec4858f4cfc2a24f733 Mon Sep 17 00:00:00 2001 From: Taewook Oh Date: Mon, 13 Feb 2017 21:12:27 +0000 Subject: Address post-commit comments for https://reviews.llvm.org/D29596. NFCI. llvm-svn: 294985 --- llvm/lib/CodeGen/MachineBasicBlock.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/CodeGen/MachineBasicBlock.cpp') diff --git a/llvm/lib/CodeGen/MachineBasicBlock.cpp b/llvm/lib/CodeGen/MachineBasicBlock.cpp index 2468bfa2a51..4e91bb07aed 100644 --- a/llvm/lib/CodeGen/MachineBasicBlock.cpp +++ b/llvm/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; -- cgit v1.2.3