From b9512a7c577c943d77f85ab49518d2b8d4d06c9e Mon Sep 17 00:00:00 2001 From: Manman Ren Date: Wed, 23 Oct 2013 22:12:26 +0000 Subject: Remove {} from one-line block. llvm-svn: 193276 --- llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'llvm/lib/CodeGen') diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp index 290d80ceffd..d8ef1232f2c 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp @@ -1369,9 +1369,8 @@ DIE *CompileUnit::getOrCreateSubprogramDIE(DISubprogram SP) { DISubprogram SPDecl = SP.getFunctionDeclaration(); DIE *DeclDie = NULL; - if (SPDecl.isSubprogram()) { + if (SPDecl.isSubprogram()) DeclDie = getOrCreateSubprogramDIE(SPDecl); - } // Add function template parameters. addTemplateParams(*SPDie, SP.getTemplateParams()); -- cgit v1.2.3