mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-04 04:50:26 +08:00
Fix testsuite fallout from r252976.
gcc/testsuite/ChangeLog: PR c/81854 * gcc.dg/attr-ifunc-1.c: Correct type errors. * gcc.dg/attr-ifunc-2.c: Ditto. * gcc.dg/attr-ifunc-3.c: Ditto. * gcc.dg/attr-ifunc-4.c: Ditto. * gcc.dg/attr-ifunc-5.c: Ditto. * gcc.dg/pr81854.c: Require ifunc support. * gcc/testsuite/lib/target-supports.exp: Correct type error. From-SVN: r253037
This commit is contained in:
parent
329c9aee73
commit
5f2fd59031
@ -1,3 +1,14 @@
|
||||
2017-09-20 Martin Sebor <msebor@redhat.com>
|
||||
|
||||
PR c/81854
|
||||
* gcc.dg/attr-ifunc-1.c: Correct type errors.
|
||||
* gcc.dg/attr-ifunc-2.c: Ditto.
|
||||
* gcc.dg/attr-ifunc-3.c: Ditto.
|
||||
* gcc.dg/attr-ifunc-4.c: Ditto.
|
||||
* gcc.dg/attr-ifunc-5.c: Ditto.
|
||||
* gcc.dg/pr81854.c: Require ifunc support.
|
||||
* gcc/testsuite/lib/target-supports.exp: Correct type error.
|
||||
|
||||
2017-09-20 Jeff Law <law@redhat.com>
|
||||
|
||||
* gcc.target/i386/stack-check-11.c: Update test and regexp
|
||||
|
@ -2,15 +2,13 @@
|
||||
/* { dg-require-ifunc "" } */
|
||||
/* { dg-options "" } */
|
||||
|
||||
typedef int F (void);
|
||||
|
||||
static int implementation (void)
|
||||
{
|
||||
__builtin_printf ("'ere I am JH\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
static F* resolver (void)
|
||||
static __typeof__ (implementation)* resolver (void)
|
||||
{
|
||||
return implementation;
|
||||
}
|
||||
|
@ -1,6 +1,8 @@
|
||||
/* { dg-require-ifunc "" } */
|
||||
|
||||
static void *resolver ()
|
||||
typedef int F (void);
|
||||
|
||||
static F *resolver ()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
@ -14,7 +14,7 @@ static int __attribute__((noinline))
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void *resolver (void)
|
||||
static __typeof__ (implementation) *resolver (void)
|
||||
{
|
||||
return (void *)implementation;
|
||||
}
|
||||
|
@ -4,15 +4,15 @@
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
static void *implementation (void)
|
||||
static int implementation (void)
|
||||
{
|
||||
printf ("'ere I am JH\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void *resolver (void)
|
||||
static __typeof__ (implementation)* resolver (void)
|
||||
{
|
||||
return (void *)implementation;
|
||||
return implementation;
|
||||
}
|
||||
|
||||
static int magic (void) __attribute__ ((ifunc ("resolver")));
|
||||
|
@ -4,13 +4,13 @@
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
static void *implementation (void)
|
||||
static int implementation (void)
|
||||
{
|
||||
printf ("'ere I am JH\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void *resolver (void)
|
||||
static __typeof__ (implementation)* resolver (void)
|
||||
{
|
||||
return (void *)implementation;
|
||||
}
|
||||
|
@ -1,5 +1,6 @@
|
||||
/* PR c/81854 - weak alias of an incompatible symbol accepted
|
||||
{ dg-do compile } */
|
||||
{ dg-do compile }
|
||||
{ dg-require-ifunc "" } */
|
||||
|
||||
const char* __attribute__ ((weak, alias ("f0_target")))
|
||||
f0 (void); /* { dg-error "alias between function and variable" } */
|
||||
|
@ -439,7 +439,8 @@ proc check_ifunc_available { } {
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
#endif
|
||||
void g() {}
|
||||
typedef void F (void);
|
||||
F* g() {}
|
||||
void f() __attribute__((ifunc("g")));
|
||||
}]
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user