diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-10-28 16:41:17 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-10-29 07:27:47 +0100 |
| commit | b0a67a05316b32e97749b2cd0a5fea4db1b30e52 (patch) | |
| tree | c0ef27c6a67f281b9cb6a7120a4b72e875221499 | |
| parent | 0729c13304aafdfe549c01db2722fa53f09fbb93 (diff) | |
| download | poky-b0a67a05316b32e97749b2cd0a5fea4db1b30e52.tar.gz | |
gcc: Drop testsuite failure fix patch
This patch has headers as if it were submitted upstream but I can't find any
record of it. I did try tests with it removed, building the referenced testsuite
files with -Werror and it all works just fine with no warnings or errors (tested
on MACHINE=qemux86). I suspect this was fixed in gcc itself in other ways.
As such I think this patch isn't needed and suggest we drop it. If there is
a reason it is needed, please report along with an example of how to reproduce
issues.
(From OE-Core rev: d83e12da74b853ae33045e5c216c90c78a19f54d)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-devtools/gcc/gcc-11.2.inc | 1 | ||||
| -rw-r--r-- | meta/recipes-devtools/gcc/gcc/0032-Fix-for-testsuite-failure.patch | 255 |
2 files changed, 0 insertions, 256 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-11.2.inc b/meta/recipes-devtools/gcc/gcc-11.2.inc index 8c54fe43df..d39307df2b 100644 --- a/meta/recipes-devtools/gcc/gcc-11.2.inc +++ b/meta/recipes-devtools/gcc/gcc-11.2.inc | |||
| @@ -56,7 +56,6 @@ SRC_URI = "\ | |||
| 56 | file://0029-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch \ | 56 | file://0029-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch \ |
| 57 | file://0030-sync-gcc-stddef.h-with-musl.patch \ | 57 | file://0030-sync-gcc-stddef.h-with-musl.patch \ |
| 58 | file://0031-fix-segmentation-fault-in-precompiled-header-generat.patch \ | 58 | file://0031-fix-segmentation-fault-in-precompiled-header-generat.patch \ |
| 59 | file://0032-Fix-for-testsuite-failure.patch \ | ||
| 60 | file://0033-Re-introduce-spe-commandline-options.patch \ | 59 | file://0033-Re-introduce-spe-commandline-options.patch \ |
| 61 | file://0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch \ | 60 | file://0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch \ |
| 62 | file://0035-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch \ | 61 | file://0035-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch \ |
diff --git a/meta/recipes-devtools/gcc/gcc/0032-Fix-for-testsuite-failure.patch b/meta/recipes-devtools/gcc/gcc/0032-Fix-for-testsuite-failure.patch deleted file mode 100644 index 0be03e652b..0000000000 --- a/meta/recipes-devtools/gcc/gcc/0032-Fix-for-testsuite-failure.patch +++ /dev/null | |||
| @@ -1,255 +0,0 @@ | |||
| 1 | From bb171ef618f8892bd56e57ae41ecb6e02caa8173 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: RAGHUNATH LOLUR <raghunath.lolur@kpit.com> | ||
| 3 | Date: Wed, 6 Dec 2017 22:52:26 -0800 | ||
| 4 | Subject: [PATCH] Fix for testsuite failure | ||
| 5 | |||
| 6 | 2017-11-16 Raghunath Lolur <raghunath.lolur@kpit.com> | ||
| 7 | |||
| 8 | * gcc.dg/pr56275.c: If SSE is disabled, ensure that | ||
| 9 | "-mfpmath" is not set to use SSE. Set "-mfpmath=387". | ||
| 10 | * gcc.dg/pr68306.c: Likewise | ||
| 11 | * gcc.dg/pr68306-2.c: Likewise | ||
| 12 | * gcc.dg/pr68306-3.c: Likewise | ||
| 13 | * gcc.dg/pr69634.c: Likewise | ||
| 14 | * gcc.target/i386/amd64-abi-1.c: Likewise | ||
| 15 | * gcc.target/i386/funcspec-6.c: Likewise | ||
| 16 | * gcc.target/i386/interrupt-387-err-1.c: Likewise | ||
| 17 | * gcc.target/i386/isa-14.c: Likewise | ||
| 18 | * gcc.target/i386/pr44948-2b.c: Likewise | ||
| 19 | * gcc.target/i386/pr53425-1.c: Likewise | ||
| 20 | * gcc.target/i386/pr53425-2.c: Likewise | ||
| 21 | * gcc.target/i386/pr55247.c: Likewise | ||
| 22 | * gcc.target/i386/pr59644.c: Likewise | ||
| 23 | * gcc.target/i386/pr62120.c: Likewise | ||
| 24 | * gcc.target/i386/pr70467-1.c: Likewise | ||
| 25 | * gcc.target/i386/warn-vect-op-1.c: Likewise | ||
| 26 | |||
| 27 | If -Wall, -Werror are used during compilation various test cases fail | ||
| 28 | to compile. | ||
| 29 | |||
| 30 | If SSE is disabled, be sure to -mfpmath=387 to resolve this. | ||
| 31 | |||
| 32 | This patch removes the changes to Changelog from the original patch. | ||
| 33 | This will help us avoid conflicts. | ||
| 34 | |||
| 35 | Upstream-Status: Pending | ||
| 36 | |||
| 37 | Signed-off-by: Mark Hatle <mark.hatle@windriver.com> | ||
| 38 | --- | ||
| 39 | gcc/testsuite/gcc.dg/pr56275.c | 2 +- | ||
| 40 | gcc/testsuite/gcc.dg/pr68306-2.c | 2 +- | ||
| 41 | gcc/testsuite/gcc.dg/pr68306-3.c | 2 +- | ||
| 42 | gcc/testsuite/gcc.dg/pr68306.c | 2 +- | ||
| 43 | gcc/testsuite/gcc.dg/pr69634.c | 2 +- | ||
| 44 | gcc/testsuite/gcc.target/i386/amd64-abi-1.c | 2 +- | ||
| 45 | gcc/testsuite/gcc.target/i386/funcspec-6.c | 1 + | ||
| 46 | gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c | 2 +- | ||
| 47 | gcc/testsuite/gcc.target/i386/isa-14.c | 2 +- | ||
| 48 | gcc/testsuite/gcc.target/i386/pr44948-2b.c | 2 +- | ||
| 49 | gcc/testsuite/gcc.target/i386/pr53425-1.c | 2 +- | ||
| 50 | gcc/testsuite/gcc.target/i386/pr53425-2.c | 2 +- | ||
| 51 | gcc/testsuite/gcc.target/i386/pr55247.c | 2 +- | ||
| 52 | gcc/testsuite/gcc.target/i386/pr59644.c | 2 +- | ||
| 53 | gcc/testsuite/gcc.target/i386/pr62120.c | 2 +- | ||
| 54 | gcc/testsuite/gcc.target/i386/pr70467-1.c | 2 +- | ||
| 55 | gcc/testsuite/gcc.target/i386/warn-vect-op-1.c | 2 +- | ||
| 56 | 17 files changed, 17 insertions(+), 16 deletions(-) | ||
| 57 | |||
| 58 | diff --git a/gcc/testsuite/gcc.dg/pr56275.c b/gcc/testsuite/gcc.dg/pr56275.c | ||
| 59 | index b901bb2b199..a4f6c95e1a1 100644 | ||
| 60 | --- a/gcc/testsuite/gcc.dg/pr56275.c | ||
| 61 | +++ b/gcc/testsuite/gcc.dg/pr56275.c | ||
| 62 | @@ -1,6 +1,6 @@ | ||
| 63 | /* { dg-do compile } */ | ||
| 64 | /* { dg-options "-O2" } */ | ||
| 65 | -/* { dg-additional-options "-mno-sse" { target { i?86-*-* x86_64-*-* } } } */ | ||
| 66 | +/* { dg-additional-options "-mno-sse -mfpmath=387" { target { i?86-*-* x86_64-*-* } } } */ | ||
| 67 | |||
| 68 | typedef long long v2tw __attribute__ ((vector_size (2 * sizeof (long long)))); | ||
| 69 | |||
| 70 | diff --git a/gcc/testsuite/gcc.dg/pr68306-2.c b/gcc/testsuite/gcc.dg/pr68306-2.c | ||
| 71 | index 4672ebe7987..2a368c484b6 100644 | ||
| 72 | --- a/gcc/testsuite/gcc.dg/pr68306-2.c | ||
| 73 | +++ b/gcc/testsuite/gcc.dg/pr68306-2.c | ||
| 74 | @@ -1,6 +1,6 @@ | ||
| 75 | /* { dg-do compile } */ | ||
| 76 | /* { dg-options "-O3" } */ | ||
| 77 | -/* { dg-additional-options "-mno-sse -mno-mmx" { target i?86-*-* x86_64-*-* } } */ | ||
| 78 | +/* { dg-additional-options "-mno-sse -mno-mmx -mfpmath=387" { target i?86-*-* x86_64-*-* } } */ | ||
| 79 | |||
| 80 | struct { | ||
| 81 | int tz_minuteswest; | ||
| 82 | diff --git a/gcc/testsuite/gcc.dg/pr68306-3.c b/gcc/testsuite/gcc.dg/pr68306-3.c | ||
| 83 | index f5a8c102cf8..df3390c64c2 100644 | ||
| 84 | --- a/gcc/testsuite/gcc.dg/pr68306-3.c | ||
| 85 | +++ b/gcc/testsuite/gcc.dg/pr68306-3.c | ||
| 86 | @@ -1,6 +1,6 @@ | ||
| 87 | /* { dg-do compile } */ | ||
| 88 | /* { dg-options "-O3" } */ | ||
| 89 | -/* { dg-additional-options "-mno-sse -mno-mmx" { target i?86-*-* x86_64-*-* } } */ | ||
| 90 | +/* { dg-additional-options "-mno-sse -mno-mmx -mfpmath=387" { target i?86-*-* x86_64-*-* } } */ | ||
| 91 | /* { dg-additional-options "-mno-altivec -mno-vsx" { target powerpc*-*-* } } */ | ||
| 92 | |||
| 93 | extern void fn2(); | ||
| 94 | diff --git a/gcc/testsuite/gcc.dg/pr68306.c b/gcc/testsuite/gcc.dg/pr68306.c | ||
| 95 | index 54e5b40f221..0813389e2c1 100644 | ||
| 96 | --- a/gcc/testsuite/gcc.dg/pr68306.c | ||
| 97 | +++ b/gcc/testsuite/gcc.dg/pr68306.c | ||
| 98 | @@ -1,6 +1,6 @@ | ||
| 99 | /* { dg-do compile } */ | ||
| 100 | /* { dg-options "-O3" } */ | ||
| 101 | -/* { dg-additional-options "-mno-sse -mno-mmx" { target i?86-*-* x86_64-*-* } } */ | ||
| 102 | +/* { dg-additional-options "-mno-sse -mno-mmx -mfpmath=387" { target i?86-*-* x86_64-*-* } } */ | ||
| 103 | |||
| 104 | enum powerpc_pmc_type { PPC_PMC_IBM }; | ||
| 105 | struct { | ||
| 106 | diff --git a/gcc/testsuite/gcc.dg/pr69634.c b/gcc/testsuite/gcc.dg/pr69634.c | ||
| 107 | index 60a56149463..bcc23f9ccd6 100644 | ||
| 108 | --- a/gcc/testsuite/gcc.dg/pr69634.c | ||
| 109 | +++ b/gcc/testsuite/gcc.dg/pr69634.c | ||
| 110 | @@ -1,6 +1,6 @@ | ||
| 111 | /* { dg-do compile } */ | ||
| 112 | /* { dg-options "-O2 -fno-dce -fschedule-insns -fno-tree-vrp -fcompare-debug -Wno-psabi" } */ | ||
| 113 | -/* { dg-additional-options "-mno-sse" { target i?86-*-* x86_64-*-* } } */ | ||
| 114 | +/* { dg-additional-options "-mno-sse -mfpmath=387" { target i?86-*-* x86_64-*-* } } */ | ||
| 115 | /* { dg-require-effective-target scheduling } */ | ||
| 116 | |||
| 117 | typedef unsigned short u16; | ||
| 118 | diff --git a/gcc/testsuite/gcc.target/i386/amd64-abi-1.c b/gcc/testsuite/gcc.target/i386/amd64-abi-1.c | ||
| 119 | index 69fde57bf06..7f1f1c03edf 100644 | ||
| 120 | --- a/gcc/testsuite/gcc.target/i386/amd64-abi-1.c | ||
| 121 | +++ b/gcc/testsuite/gcc.target/i386/amd64-abi-1.c | ||
| 122 | @@ -1,5 +1,5 @@ | ||
| 123 | /* { dg-do compile { target { ! ia32 } } } */ | ||
| 124 | -/* { dg-options "-mno-sse" } */ | ||
| 125 | +/* { dg-options "-mno-sse -mfpmath=387" } */ | ||
| 126 | /* { dg-additional-options "-mabi=sysv" { target *-*-mingw* } } */ | ||
| 127 | |||
| 128 | double foo(void) { return 0; } /* { dg-error "SSE disabled" } */ | ||
| 129 | diff --git a/gcc/testsuite/gcc.target/i386/funcspec-6.c b/gcc/testsuite/gcc.target/i386/funcspec-6.c | ||
| 130 | index ea896b7ebfd..bf15569b826 100644 | ||
| 131 | --- a/gcc/testsuite/gcc.target/i386/funcspec-6.c | ||
| 132 | +++ b/gcc/testsuite/gcc.target/i386/funcspec-6.c | ||
| 133 | @@ -1,6 +1,7 @@ | ||
| 134 | /* Test whether all of the 64-bit function specific options are accepted | ||
| 135 | without error. */ | ||
| 136 | /* { dg-do compile { target { ! ia32 } } } */ | ||
| 137 | +/* { dg-additional-options "-mfpmath=387" } */ | ||
| 138 | |||
| 139 | #include "funcspec-56.inc" | ||
| 140 | |||
| 141 | diff --git a/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c b/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c | ||
| 142 | index 8561a3c26d6..6377f814645 100644 | ||
| 143 | --- a/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c | ||
| 144 | +++ b/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c | ||
| 145 | @@ -1,5 +1,5 @@ | ||
| 146 | /* { dg-do compile } */ | ||
| 147 | -/* { dg-options "-O2 -mgeneral-regs-only -mno-cld -mno-iamcu -m80387" } */ | ||
| 148 | +/* { dg-options "-O2 -mgeneral-regs-only -mno-cld -mno-iamcu -m80387 -mfpmath=387" } */ | ||
| 149 | |||
| 150 | typedef unsigned int uword_t __attribute__ ((mode (__word__))); | ||
| 151 | |||
| 152 | diff --git a/gcc/testsuite/gcc.target/i386/isa-14.c b/gcc/testsuite/gcc.target/i386/isa-14.c | ||
| 153 | index 5d49e6e77fe..1de2db92bdd 100644 | ||
| 154 | --- a/gcc/testsuite/gcc.target/i386/isa-14.c | ||
| 155 | +++ b/gcc/testsuite/gcc.target/i386/isa-14.c | ||
| 156 | @@ -1,5 +1,5 @@ | ||
| 157 | /* { dg-do run } */ | ||
| 158 | -/* { dg-options "-march=x86-64 -msse4a -mfma4 -mno-sse" } */ | ||
| 159 | +/* { dg-options "-march=x86-64 -msse4a -mfma4 -mno-sse -mfpmath=387" } */ | ||
| 160 | |||
| 161 | extern void abort (void); | ||
| 162 | |||
| 163 | diff --git a/gcc/testsuite/gcc.target/i386/pr44948-2b.c b/gcc/testsuite/gcc.target/i386/pr44948-2b.c | ||
| 164 | index fa1769b62fb..f79fb12726f 100644 | ||
| 165 | --- a/gcc/testsuite/gcc.target/i386/pr44948-2b.c | ||
| 166 | +++ b/gcc/testsuite/gcc.target/i386/pr44948-2b.c | ||
| 167 | @@ -1,5 +1,5 @@ | ||
| 168 | /* { dg-do compile } */ | ||
| 169 | -/* { dg-options "-O -mno-sse -Wno-psabi -mtune=generic" } */ | ||
| 170 | +/* { dg-options "-O -mno-sse -Wno-psabi -mtune=generic -mfpmath=387" } */ | ||
| 171 | |||
| 172 | struct A | ||
| 173 | { | ||
| 174 | diff --git a/gcc/testsuite/gcc.target/i386/pr53425-1.c b/gcc/testsuite/gcc.target/i386/pr53425-1.c | ||
| 175 | index 2e89ff7d81d..6339bf6b736 100644 | ||
| 176 | --- a/gcc/testsuite/gcc.target/i386/pr53425-1.c | ||
| 177 | +++ b/gcc/testsuite/gcc.target/i386/pr53425-1.c | ||
| 178 | @@ -1,6 +1,6 @@ | ||
| 179 | /* PR target/53425 */ | ||
| 180 | /* { dg-do compile { target { ! ia32 } } } */ | ||
| 181 | -/* { dg-options "-O2 -mno-sse" } */ | ||
| 182 | +/* { dg-options "-O2 -mno-sse -mfpmath=387" } */ | ||
| 183 | /* { dg-skip-if "no SSE vector" { x86_64-*-mingw* } } */ | ||
| 184 | |||
| 185 | typedef double __v2df __attribute__ ((__vector_size__ (16))); | ||
| 186 | diff --git a/gcc/testsuite/gcc.target/i386/pr53425-2.c b/gcc/testsuite/gcc.target/i386/pr53425-2.c | ||
| 187 | index 61f6283dbe9..2c5a55f0ac3 100644 | ||
| 188 | --- a/gcc/testsuite/gcc.target/i386/pr53425-2.c | ||
| 189 | +++ b/gcc/testsuite/gcc.target/i386/pr53425-2.c | ||
| 190 | @@ -1,6 +1,6 @@ | ||
| 191 | /* PR target/53425 */ | ||
| 192 | /* { dg-do compile { target { ! ia32 } } } */ | ||
| 193 | -/* { dg-options "-O2 -mno-sse" } */ | ||
| 194 | +/* { dg-options "-O2 -mno-sse -mfpmath=387" } */ | ||
| 195 | /* { dg-skip-if "no SSE vector" { x86_64-*-mingw* } } */ | ||
| 196 | |||
| 197 | typedef float __v2sf __attribute__ ((__vector_size__ (8))); | ||
| 198 | diff --git a/gcc/testsuite/gcc.target/i386/pr55247.c b/gcc/testsuite/gcc.target/i386/pr55247.c | ||
| 199 | index 23366d0909d..9810e3abb76 100644 | ||
| 200 | --- a/gcc/testsuite/gcc.target/i386/pr55247.c | ||
| 201 | +++ b/gcc/testsuite/gcc.target/i386/pr55247.c | ||
| 202 | @@ -1,6 +1,6 @@ | ||
| 203 | /* { dg-do compile { target { ! ia32 } } } */ | ||
| 204 | /* { dg-require-effective-target maybe_x32 } */ | ||
| 205 | -/* { dg-options "-O2 -mno-sse -mno-mmx -mx32 -maddress-mode=long" } */ | ||
| 206 | +/* { dg-options "-O2 -mno-sse -mno-mmx -mx32 -maddress-mode=long -mfpmath=387" } */ | ||
| 207 | |||
| 208 | typedef unsigned int uint32_t; | ||
| 209 | typedef uint32_t Elf32_Word; | ||
| 210 | diff --git a/gcc/testsuite/gcc.target/i386/pr59644.c b/gcc/testsuite/gcc.target/i386/pr59644.c | ||
| 211 | index 96006b3e338..4287e4538bf 100644 | ||
| 212 | --- a/gcc/testsuite/gcc.target/i386/pr59644.c | ||
| 213 | +++ b/gcc/testsuite/gcc.target/i386/pr59644.c | ||
| 214 | @@ -1,6 +1,6 @@ | ||
| 215 | /* PR target/59644 */ | ||
| 216 | /* { dg-do run { target lp64 } } */ | ||
| 217 | -/* { dg-options "-O2 -ffreestanding -mno-sse -mpreferred-stack-boundary=3 -maccumulate-outgoing-args -mno-red-zone" } */ | ||
| 218 | +/* { dg-options "-O2 -ffreestanding -mno-sse -mpreferred-stack-boundary=3 -maccumulate-outgoing-args -mno-red-zone -mfpmath=387" } */ | ||
| 219 | |||
| 220 | /* This test uses __builtin_trap () instead of e.g. abort, | ||
| 221 | because due to -mpreferred-stack-boundary=3 it should not call | ||
| 222 | diff --git a/gcc/testsuite/gcc.target/i386/pr62120.c b/gcc/testsuite/gcc.target/i386/pr62120.c | ||
| 223 | index 28d85d37712..c93266bd4bc 100644 | ||
| 224 | --- a/gcc/testsuite/gcc.target/i386/pr62120.c | ||
| 225 | +++ b/gcc/testsuite/gcc.target/i386/pr62120.c | ||
| 226 | @@ -1,5 +1,5 @@ | ||
| 227 | /* { dg-do compile } */ | ||
| 228 | -/* { dg-options "-mno-sse" } */ | ||
| 229 | +/* { dg-options "-mno-sse -mfpmath=387" } */ | ||
| 230 | |||
| 231 | void foo () | ||
| 232 | { | ||
| 233 | diff --git a/gcc/testsuite/gcc.target/i386/pr70467-1.c b/gcc/testsuite/gcc.target/i386/pr70467-1.c | ||
| 234 | index 4e112c88d07..bcfb396a68d 100644 | ||
| 235 | --- a/gcc/testsuite/gcc.target/i386/pr70467-1.c | ||
| 236 | +++ b/gcc/testsuite/gcc.target/i386/pr70467-1.c | ||
| 237 | @@ -1,6 +1,6 @@ | ||
| 238 | /* PR rtl-optimization/70467 */ | ||
| 239 | /* { dg-do compile } */ | ||
| 240 | -/* { dg-options "-O2 -mno-sse" } */ | ||
| 241 | +/* { dg-options "-O2 -mno-sse -mfpmath=387" } */ | ||
| 242 | |||
| 243 | void foo (unsigned long long *); | ||
| 244 | |||
| 245 | diff --git a/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c b/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c | ||
| 246 | index 6cda1534311..26e37f5b8ba 100644 | ||
| 247 | --- a/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c | ||
| 248 | +++ b/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c | ||
| 249 | @@ -1,5 +1,5 @@ | ||
| 250 | /* { dg-do compile { target { ! ia32 } } } */ | ||
| 251 | -/* { dg-options "-mno-sse -Wvector-operation-performance" } */ | ||
| 252 | +/* { dg-options "-mno-sse -Wvector-operation-performance -mfpmath=387" } */ | ||
| 253 | #define vector(elcount, type) \ | ||
| 254 | __attribute__((vector_size((elcount)*sizeof(type)))) type | ||
| 255 | |||
