Commit 867a1e28 by Ilya Leoshkevich Committed by Ilya Leoshkevich

[PATCH 1/2] S/390: Disable 3 global-array-* tests for 31-bit mode

These tests rely on larl->movdi merge, which is not implemented for
31-bit mode.

gcc/testsuite/ChangeLog:

2018-11-14  Ilya Leoshkevich  <iii@linux.ibm.com>

	* gcc.target/s390/global-array-almost-huge-element.c: Run only
	in 64-bit mode.
	* gcc.target/s390/global-array-almost-negative-huge-element.c:
	Likewise.
	* gcc.target/s390/global-array-even-element.c: Likewise.

From-SVN: r266144
parent 9449a01e
2018-11-14 Ilya Leoshkevich <iii@linux.ibm.com>
* gcc.target/s390/global-array-almost-huge-element.c: Run only
in 64-bit mode.
* gcc.target/s390/global-array-almost-negative-huge-element.c:
Likewise.
* gcc.target/s390/global-array-even-element.c: Likewise.
2018-11-14 Wilco Dijkstra <wdijkstr@arm.com>
Jackson Woodruff <jackson.woodruff@arm.com>
......
/* Test the maximum possible LARL offset. */
/* { dg-do compile } */
/* { dg-do compile { target lp64 } } */
/* { dg-options "-O1" } */
extern char a[] __attribute__ ((aligned (2)));
......
/* Test the minimum LARL offset. */
/* { dg-do compile } */
/* { dg-do compile { target lp64 } } */
/* { dg-options "-O1" } */
extern char a[] __attribute__ ((aligned (2)));
......
/* Test accesses to even global array elements. */
/* { dg-do compile } */
/* { dg-do compile { target lp64 } } */
/* { dg-options "-O1" } */
extern char a[] __attribute__ ((aligned (2)));
......
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