Remove {} from one-line block.

llvm-svn: 193276
This commit is contained in:
Manman Ren 2013-10-23 22:12:26 +00:00
parent bca3ab0905
commit b9512a7c57
1 changed files with 1 additions and 2 deletions

View File

@ -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());