From 9b20858a9ba7039a12cef6e724e541bdcce2ba25 Mon Sep 17 00:00:00 2001 From: Andrew Bennett Date: Tue, 7 Jul 2015 16:07:51 +0000 Subject: [PATCH] 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 --- gcc/testsuite/ChangeLog | 5 +++++ gcc/testsuite/gcc.target/mips/no-smartmips-lwxs.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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]; } -- 2.30.2