MIPS: Do not generate micromips code for the no-smartmips-lwxs.c testcase

The LWXS instruction is part of the micromips ISA which means it is
valid to generate it for the no-smartmips-lwxs.c testcase.

testsuite/
	* gcc.target/mips/no-smartmips-lwxs.c: Change NOMIPS16 to
	NOCOMPRESSION.

From-SVN: r225519
This commit is contained in:
Andrew Bennett 2015-07-07 16:07:51 +00:00 committed by Andrew Bennett
parent 98e30e515f
commit 9b20858a9b
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2015-07-07 Andrew Bennett <andrew.bennett@imgtec.com>
* gcc.target/mips/no-smartmips-lwxs.c: Change NOMIPS16 to
NOCOMPRESSION.
2015-07-07 Richard Biener <rguenther@suse.de>
* gcc.dg/vect/vect-over-widen-3-big-array.c: Adjust.

View file

@ -1,7 +1,7 @@
/* { dg-do compile } */
/* { dg-options "-mno-smartmips" } */
NOMIPS16 int scaled_indexed_word_load (int a[], int b)
NOCOMPRESSION int scaled_indexed_word_load (int a[], int b)
{
return a[b];
}