]> granicus.if.org Git - clang/commitdiff
Wrap to 80 columns. No behavior change.
authorNico Weber <nicolasweber@gmx.de>
Mon, 12 Jan 2015 21:24:10 +0000 (21:24 +0000)
committerNico Weber <nicolasweber@gmx.de>
Mon, 12 Jan 2015 21:24:10 +0000 (21:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@225703 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGDeclCXX.cpp
lib/CodeGen/MicrosoftCXXABI.cpp

index e002cdf6d884668589e31e8cb1d6790bb0d9838b..0e3117400feaf20771e3b2f96afc78d857240663 100644 (file)
@@ -333,8 +333,9 @@ CodeGenModule::EmitCXXGlobalVarDeclInitFunc(const VarDecl *D,
     AddGlobalCtor(Fn, 65535, COMDATKey);
     DelayedCXXInitPosition.erase(D);
   } else if (D->hasAttr<SelectAnyAttr>()) {
-    // SelectAny globals will be comdat-folded. Put the initializer into a COMDAT
-    // group associated with the global, so the initializers get folded too.
+    // SelectAny globals will be comdat-folded. Put the initializer into a
+    // COMDAT group associated with the global, so the initializers get folded
+    // too.
     AddGlobalCtor(Fn, 65535, COMDATKey);
     DelayedCXXInitPosition.erase(D);
   } else {
index 83ad22ce7adb8d44588e431957b3fb0913b347d4..06c913e1ced7a17340bea96a5542e66c1a73b4ef 100644 (file)
@@ -1465,9 +1465,9 @@ llvm::Value *MicrosoftCXXABI::EmitVirtualDestructorCall(
   llvm::Value *Callee = getVirtualFunctionPointer(CGF, GD, This, Ty);
 
   ASTContext &Context = CGF.getContext();
-  llvm::Value *ImplicitParam =
-      llvm::ConstantInt::get(llvm::IntegerType::getInt32Ty(CGF.getLLVMContext()),
-                             DtorType == Dtor_Deleting);
+  llvm::Value *ImplicitParam = llvm::ConstantInt::get(
+      llvm::IntegerType::getInt32Ty(CGF.getLLVMContext()),
+      DtorType == Dtor_Deleting);
 
   This = adjustThisArgumentForVirtualFunctionCall(CGF, GD, This, true);
   RValue RV = CGF.EmitCXXStructorCall(Dtor, Callee, ReturnValueSlot(), This,