Commit 08094409 by H.J. Lu Committed by H.J. Lu

Add testcases for PRs 47766/47715.

2011-08-06  H.J. Lu  <hongjiu.lu@intel.com>

	PR target/47766
	* gcc.dg/pr47766.c: New.

	PR target/47715
	* gcc.dg/tls/pr47715-1.c: New.
	* gcc.dg/tls/pr47715-2.c: Likewise.
	* gcc.dg/tls/pr47715-3.c: Likewise.
	* gcc.dg/tls/pr47715-4.c: Likewise.

From-SVN: r177511
parent 0e0677a2
2011-08-06 H.J. Lu <hongjiu.lu@intel.com>
PR target/47766
* gcc.dg/pr47766.c: New.
PR target/47715
* gcc.dg/tls/pr47715-1.c: New.
* gcc.dg/tls/pr47715-2.c: Likewise.
* gcc.dg/tls/pr47715-3.c: Likewise.
* gcc.dg/tls/pr47715-4.c: Likewise.
2011-08-06 Nicola Pero <nicola.pero@meta-innovation.com>
PR libobjc/50002
......
/* { dg-do compile } */
/* { dg-options "-O2 -fstack-protector" } */
/* { dg-require-effective-target fstack_protector } */
int
parse_opt (int key)
{
struct
{
int arg[key];
} reqdata;
return 0;
}
/* { dg-do compile } */
/* { dg-require-effective-target fpic } */
/* { dg-options "-O2 -fPIC" } */
/* { dg-require-effective-target tls } */
extern __thread int h_errno;
int *
__h_errno_location (void)
{
return &h_errno;
}
/* { dg-do compile } */
/* { dg-require-effective-target fpic } */
/* { dg-options "-O2 -fPIC" } */
/* { dg-require-effective-target tls } */
extern __thread int *__libc_resp;
int
__res_init(void) {
return *__libc_resp;
}
/* { dg-do compile } */
/* { dg-require-effective-target fpic } */
/* { dg-options "-O2 -fPIC" } */
/* { dg-require-effective-target tls } */
struct initial_sp
{
void *sp;
long len;
};
__thread
struct initial_sp __morestack_initial_sp;
void bar (void *);
void
foo ()
{
bar (&__morestack_initial_sp.len);
}
/* { dg-do compile } */
/* { dg-options "-O0" } */
/* { dg-require-effective-target tls } */
struct gomp_team_state
{
struct gomp_team_state *prev_ts;
unsigned team_id;
unsigned level;
};
struct gomp_thread
{
void *data;
struct gomp_team_state ts;
};
extern __thread struct gomp_thread gomp_tls_data;
int
foo (int level)
{
struct gomp_team_state *ts = &gomp_tls_data.ts;
if (level < 0 || level > ts->level)
return -1;
return ts->team_id;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment