summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/CodeGenModule.cpp
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2015-01-21 14:55:00 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2015-01-21 14:55:00 +0000
commit6d1178ca409ce738543604053f23a463ad2b3aa2 (patch)
tree8d78b77c059de5ff6ab5f35fee63e9aa0094216d /clang/lib/CodeGen/CodeGenModule.cpp
parentada9fa1ca93e407f0f5211c0bdf1c338de997937 (diff)
downloadbcm5719-llvm-6d1178ca409ce738543604053f23a463ad2b3aa2.tar.gz
bcm5719-llvm-6d1178ca409ce738543604053f23a463ad2b3aa2.zip
clang-format function. NFC.
llvm-svn: 226662
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r--clang/lib/CodeGen/CodeGenModule.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp
index 6611a711043..0c8d4f65f09 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
OpenPOWER on IntegriCloud