From: Andrew Bennett Date: Tue, 7 Jul 2015 16:07:51 +0000 (+0000) Subject: MIPS: Do not generate micromips code for the no-smartmips-lwxs.c testcase X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9b20858a9ba7039a12cef6e724e541bdcce2ba25;p=gcc.git 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 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index d9fa97a3f65..b2e0e988180 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2015-07-07 Andrew Bennett + + * gcc.target/mips/no-smartmips-lwxs.c: Change NOMIPS16 to + NOCOMPRESSION. + 2015-07-07 Richard Biener * gcc.dg/vect/vect-over-widen-3-big-array.c: Adjust. diff --git a/gcc/testsuite/gcc.target/mips/no-smartmips-lwxs.c b/gcc/testsuite/gcc.target/mips/no-smartmips-lwxs.c index ecf856ea7fa..e94677fe7a3 100644 --- a/gcc/testsuite/gcc.target/mips/no-smartmips-lwxs.c +++ b/gcc/testsuite/gcc.target/mips/no-smartmips-lwxs.c @@ -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]; }