diff options
author | Christophe Lyon <christophe.lyon@linaro.org> | 2015-06-16 10:19:59 +0000 |
---|---|---|
committer | Christophe Lyon <clyon@gcc.gnu.org> | 2015-06-16 12:19:59 +0200 |
commit | c764591d76467d91fb75753352b5a8281f82c56a (patch) | |
tree | fa06ab0460ce174c6aa783e9c342031ddb76d398 /gcc | |
parent | 8c629c032d4e8166ece1eb01f42b510077723fa9 (diff) | |
download | gcc-c764591d76467d91fb75753352b5a8281f82c56a.zip gcc-c764591d76467d91fb75753352b5a8281f82c56a.tar.gz gcc-c764591d76467d91fb75753352b5a8281f82c56a.tar.bz2 |
ARM][obvious] Fix gcc.target/arm/thumb-ifcvt.c
2015-06-16 Christophe Lyon <christophe.lyon@linaro.org>
* gcc.target/arm/thumb-ifcvt.c: Add -mno-restrict-it to
dg-options.
From-SVN: r224509
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/arm/thumb-ifcvt.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 859acb7..a87bb15 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2015-06-16 Christophe Lyon <christophe.lyon@linaro.org> + + * gcc.target/arm/thumb-ifcvt.c: Add -mno-restrict-it to + dg-options. + 2015-06-16 James Greenhalgh <james.greenhalgh@arm.com> * gcc.target/aarch64/advsimd-intrinsics/advsimd-intrinsics.exp: diff --git a/gcc/testsuite/gcc.target/arm/thumb-ifcvt.c b/gcc/testsuite/gcc.target/arm/thumb-ifcvt.c index d51827a..02e56f5 100644 --- a/gcc/testsuite/gcc.target/arm/thumb-ifcvt.c +++ b/gcc/testsuite/gcc.target/arm/thumb-ifcvt.c @@ -1,7 +1,7 @@ /* Check that Thumb 16-bit shifts can be if-converted. */ /* { dg-do compile } */ /* { dg-require-effective-target arm_thumb2_ok } */ -/* { dg-options "-O2 -mthumb" } */ +/* { dg-options "-O2 -mthumb -mno-restrict-it" } */ int foo (int a, int b) |