diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-01-21 14:55:00 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-01-21 14:55:00 +0000 |
commit | f50eea4825f5b7d63b0db474e18a7617d2042bcf (patch) | |
tree | 2321464ca7a4f8b1aace81f973dbc6d338884aec /lib/CodeGen/CodeGenModule.cpp | |
parent | c9301cf73af73b45ae89b5f8e63c97462dec082f (diff) | |
download | clang-f50eea4825f5b7d63b0db474e18a7617d2042bcf.tar.gz |
clang-format function. NFC.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@226662 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | lib/CodeGen/CodeGenModule.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/CodeGenModule.cpp b/lib/CodeGen/CodeGenModule.cpp index 6611a71104..0c8d4f65f0 100644 --- a/lib/CodeGen/CodeGenModule.cpp +++ b/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 |