r354548 - Fix typo in r354546

Serge Guelton via cfe-commits cfe-commits at lists.llvm.org
Wed Feb 20 22:12:41 PST 2019


Author: serge_sans_paille
Date: Wed Feb 20 22:12:41 2019
New Revision: 354548

URL: http://llvm.org/viewvc/llvm-project?rev=354548&view=rev
Log:
Fix typo in r354546

Modified:
    cfe/trunk/include/clang/CodeGen/CGFunctionInfo.h

Modified: cfe/trunk/include/clang/CodeGen/CGFunctionInfo.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/CodeGen/CGFunctionInfo.h?rev=354548&r1=354547&r2=354548&view=diff
==============================================================================
--- cfe/trunk/include/clang/CodeGen/CGFunctionInfo.h (original)
+++ cfe/trunk/include/clang/CodeGen/CGFunctionInfo.h Wed Feb 20 22:12:41 2019
@@ -115,11 +115,9 @@ private:
         PaddingInReg(false), InAllocaSRet(false), IndirectByVal(false),
         IndirectRealign(false), SRetAfterThis(false), InReg(false),
         CanBeFlattened(false), SignExt(false), SuppressSRet(false) {}
-}
 
 public : ABIArgInfo()
-    : ABIArgInfo(Direct) {
-}
+    : ABIArgInfo(Direct) {}
 
   static ABIArgInfo getDirect(llvm::Type *T = nullptr, unsigned Offset = 0,
                               llvm::Type *Padding = nullptr,




More information about the cfe-commits mailing list