From: Richard Earnshaw Date: Mon, 20 Aug 2012 10:57:45 +0000 (+0000) Subject: thumb-16bit-ops.c (f): This test uses a 16-bit add instruction. X-Git-Tag: misc/gccgo-go1_1_2~1288 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c3b3cd8d6899e345dc9792b57c2b1b78b3f3635e;p=thirdparty%2Fgcc.git thumb-16bit-ops.c (f): This test uses a 16-bit add instruction. * gcc.target/arm/thumb-16bit-ops.c (f): This test uses a 16-bit add instruction. (f2): New test that really does need adds. From-SVN: r190530 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index ba0b5b2aa316..e9aaf243950c 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2012-08-20 Richard Earnshaw + + * gcc.target/arm/thumb-16bit-ops.c (f): This test uses a 16-bit + add instruction. + (f2): New test that really does need adds. + 2012-08-20 Richard Guenther PR tree-optimization/54327 diff --git a/gcc/testsuite/gcc.target/arm/thumb-16bit-ops.c b/gcc/testsuite/gcc.target/arm/thumb-16bit-ops.c index bd4f4897f356..90407eb6872e 100644 --- a/gcc/testsuite/gcc.target/arm/thumb-16bit-ops.c +++ b/gcc/testsuite/gcc.target/arm/thumb-16bit-ops.c @@ -4,13 +4,20 @@ /* { dg-options "-Os -fno-builtin -mthumb" } */ int -f (int a, int b ) +f (int a, int b) { return a + b; } -/* { dg-final { scan-assembler "adds r0, r0, r1" } } */ +/* { dg-final { scan-assembler "add r0, r0, r1" } } */ +int +f2 (int a, int b, int c) +{ + return b + c; +} + +/* { dg-final { scan-assembler "adds r0, r1, r2" } } */ int g1 (int a) {