]> gcc.gnu.org Git - gcc.git/commitdiff
testsuite: Use noipa attribute instead of noinline, noclone
authorJakub Jelinek <jakub@redhat.com>
Wed, 16 Jun 2021 11:10:48 +0000 (13:10 +0200)
committerJakub Jelinek <jakub@redhat.com>
Tue, 10 May 2022 08:14:24 +0000 (10:14 +0200)
I've noticed this test now on various arches sometimes FAILs, sometimes
PASSes (the line 12 test in particular).

The problem is that a = 0; initialization in the caller no longer happens
before the f(&a) call as what the argument points to is only used in
debug info.

Making the function noipa forces the caller to initialize it and still
tests what the test wants to test, namely that we don't consider *p as
valid location for the c variable at line 18 (after it has been overwritten
with *p = 1;).

2021-06-16  Jakub Jelinek  <jakub@redhat.com>

* gcc.dg/guality/pr49888.c (f): Use noipa attribute instead of
noinline, noclone.

(cherry picked from commit a490b1dc0b3c26bff2ee00ac0da2d606d2009e3a)

gcc/testsuite/gcc.dg/guality/pr49888.c

index 4f3a2501eb7c80b2955b6e4fad3a08fa36eb6915..919cfc9c7693e3ce80e28b70d24472c3d405cefd 100644 (file)
@@ -4,7 +4,7 @@
 
 static int v __attribute__((used));
 
-static void __attribute__((noinline, noclone))
+static void __attribute__((noipa))
 f (int *p)
 {
   int c = *p;
This page took 0.069943 seconds and 5 git commands to generate.