From: abennett 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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=345fc96e88f20b8420c9a6d4947afd29f9e6ab68;p=thirdparty%2Fgcc.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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@225519 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index d9fa97a3f655..b2e0e9881808 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 ecf856ea7fa0..e94677fe7a30 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]; }