From 6d1178ca409ce738543604053f23a463ad2b3aa2 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Wed, 21 Jan 2015 14:55:00 +0000 Subject: [PATCH] clang-format function. NFC. llvm-svn: 226662 --- clang/lib/CodeGen/CodeGenModule.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index 6611a7110438..0c8d4f65f096 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -1095,7 +1095,8 @@ void CodeGenModule::EmitDeferred() { } // Stop if we're out of both deferred v-tables and deferred declarations. - if (DeferredDeclsToEmit.empty()) break; + if (DeferredDeclsToEmit.empty()) + break; DeferredGlobal &G = DeferredDeclsToEmit.back(); GlobalDecl D = G.GD; @@ -1106,7 +1107,6 @@ void CodeGenModule::EmitDeferred() { if (!GV) GV = GetGlobalValue(getMangledName(D)); - // Check to see if we've already emitted this. This is necessary // for a couple of reasons: first, decls can end up in the // deferred-decls queue multiple times, and second, decls can end