mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-06 02:10:29 +08:00
Add a test for PR middle-end/53249
PR middle-end/53249 * gcc.target/i386/pr53249.c: New. From-SVN: r187331
This commit is contained in:
parent
e7ff45102c
commit
af9059026e
@ -1,3 +1,8 @@
|
||||
2012-05-09 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
PR middle-end/53249
|
||||
* gcc.target/i386/pr53249.c: New.
|
||||
|
||||
2012-05-09 Richard Guenther <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/18437
|
||||
|
25
gcc/testsuite/gcc.target/i386/pr53249.c
Normal file
25
gcc/testsuite/gcc.target/i386/pr53249.c
Normal file
@ -0,0 +1,25 @@
|
||||
/* { dg-do compile { target { ! { ia32 } } } } */
|
||||
/* { dg-options "-O2 -mx32 -ftls-model=initial-exec -maddress-mode=short" } */
|
||||
|
||||
struct gomp_task
|
||||
{
|
||||
struct gomp_task *parent;
|
||||
};
|
||||
|
||||
struct gomp_thread
|
||||
{
|
||||
int foo1;
|
||||
struct gomp_task *task;
|
||||
};
|
||||
|
||||
extern __thread struct gomp_thread gomp_tls_data;
|
||||
|
||||
void
|
||||
__attribute__ ((noinline))
|
||||
gomp_end_task (void)
|
||||
{
|
||||
struct gomp_thread *thr = &gomp_tls_data;
|
||||
struct gomp_task *task = thr->task;
|
||||
|
||||
thr->task = task->parent;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user