Revert r354546
authorSerge Guelton <sguelton@redhat.com>
Thu, 21 Feb 2019 06:59:21 +0000 (06:59 +0000)
committerSerge Guelton <sguelton@redhat.com>
Thu, 21 Feb 2019 06:59:21 +0000 (06:59 +0000)
This triggers an ICE on gcc 7, see http://lab.llvm.org:8011/builders/clang-cmake-aarch64-quick/builds/17598/steps/build%20stage%201/logs/stdio

llvm-svn: 354549

clang/include/clang/CodeGen/CGFunctionInfo.h

index 0076068..52157f0 100644 (file)
@@ -111,13 +111,14 @@ private:
   }
 
   ABIArgInfo(Kind K)
-      : TypeData(nullptr), PaddingType(nullptr), DirectOffset(0), TheKind(K),
-        PaddingInReg(false), InAllocaSRet(false), IndirectByVal(false),
-        IndirectRealign(false), SRetAfterThis(false), InReg(false),
-        CanBeFlattened(false), SignExt(false), SuppressSRet(false) {}
+      : TheKind(K), PaddingInReg(false), InReg(false), SuppressSRet(false) {
+  }
 
-public : ABIArgInfo()
-    : ABIArgInfo(Direct) {}
+public:
+  ABIArgInfo()
+      : TypeData(nullptr), PaddingType(nullptr), DirectOffset(0),
+        TheKind(Direct), PaddingInReg(false), InReg(false),
+        SuppressSRet(false) {}
 
   static ABIArgInfo getDirect(llvm::Type *T = nullptr, unsigned Offset = 0,
                               llvm::Type *Padding = nullptr,