summarylogtreecommitdiffstats
path: root/always-initialize-all-members-in-ABIArgInfo.patch
diff options
context:
space:
mode:
authorLW-archlinux2019-09-19 15:31:38 +0200
committerLW-archlinux2019-09-19 15:31:38 +0200
commit5473ba77709e9587758b848d311406e67a751e2c (patch)
tree5ddd1c3226446564eaf066b1024d4222cf71abc1 /always-initialize-all-members-in-ABIArgInfo.patch
parent65cebdfc333733d4cb0c7067b0116646f3aeee2e (diff)
downloadaur-5473ba77709e9587758b848d311406e67a751e2c.tar.gz
patch for building with gcc9 removed since it is now in master
Diffstat (limited to 'always-initialize-all-members-in-ABIArgInfo.patch')
-rw-r--r--always-initialize-all-members-in-ABIArgInfo.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/always-initialize-all-members-in-ABIArgInfo.patch b/always-initialize-all-members-in-ABIArgInfo.patch
deleted file mode 100644
index bcad2e978e56..000000000000
--- a/always-initialize-all-members-in-ABIArgInfo.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-diff --unified --recursive --text llvm-project.orig/clang/include/clang/CodeGen/CGFunctionInfo.h llvm-project.new/clang/include/clang/CodeGen/CGFunctionInfo.h
---- llvm-project.orig/clang/include/clang/CodeGen/CGFunctionInfo.h 2019-08-15 21:40:05.816836459 +0200
-+++ llvm-project.new/clang/include/clang/CodeGen/CGFunctionInfo.h 2019-08-15 21:46:13.650020726 +0200
-@@ -110,14 +110,16 @@
- }
-
- ABIArgInfo(Kind K)
-- : TheKind(K), PaddingInReg(false), InReg(false) {
-- }
--
--public:
-- ABIArgInfo()
-- : TypeData(nullptr), PaddingType(nullptr), DirectOffset(0),
-- TheKind(Direct), PaddingInReg(false), InReg(false) {}
-+ : TypeData(nullptr), PaddingType(nullptr), DirectOffset(0), TheKind(K),
-+ PaddingInReg(false), InAllocaSRet(false), IndirectByVal(false),
-+ IndirectRealign(false), SRetAfterThis(false), InReg(false),
-+ CanBeFlattened(false), SignExt(false) {}
-
-+public:
-+ ABIArgInfo()
-+ : TypeData(nullptr), PaddingType(nullptr), DirectOffset(0),
-+ TheKind(Direct), PaddingInReg(false), InReg(false) {}
-+
- static ABIArgInfo getDirect(llvm::Type *T = nullptr, unsigned Offset = 0,
- llvm::Type *Padding = nullptr,
- bool CanBeFlattened = true) {