Commit 490ed846 by John David Anglin Committed by John David Anglin

20020219-1.c: Add "-mdisable-indexing" option for target hppa*-*-hpux*.

	* gcc.dg/20020219-1.c: Add "-mdisable-indexing" option for target
	hppa*-*-hpux*.  Update test comment.

From-SVN: r57415
parent da28539c
2002-09-22 John David Anglin <dave@hiauly1.hia.nrc.ca>
* gcc.dg/20020219-1.c: Add "-mdisable-indexing" option for target
hppa*-*-hpux*. Update test comment.
2002-09-20 Jakub Jelinek <jakub@redhat.com>
* gcc.dg/tls/struct-1.c: New test.
......
/* PR c/4389
This testcase failed because host_integerp (x, 0) was returning
1 even for constants bigger than 2^31. */
1 even for constants bigger than 2^31. It fails under under hpux
without -mdisable-indexing because the pointer x - 1 is used as
the base address of an indexed load. Because the struct A is not
actually allocated, x - 1 lies in the text segment and this causes
the wrong space register to be selected for the load. */
/* { dg-do run } */
/* { dg-options "-O2" } */
/* { dg-options "-O2 -mdisable-indexing" { target hppa*-*-hpux* } } */
extern void abort (void);
extern void exit (int);
......
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