diff options
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/CGDecl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGDecl.cpp b/lib/CodeGen/CGDecl.cpp index 56e7b8b792..ea69a66b05 100644 --- a/lib/CodeGen/CGDecl.cpp +++ b/lib/CodeGen/CGDecl.cpp @@ -153,7 +153,7 @@ void CodeGenFunction::EmitStaticBlockVarDecl(const VarDecl &D) { // Emit global variable debug descriptor for static vars. CGDebugInfo *DI = getDebugInfo(); - if(DI) { + if (DI) { DI->setLocation(D.getLocation()); DI->EmitGlobalVariable(static_cast<llvm::GlobalVariable *>(GV), &D); } |