From: Hans-Peter Nilsson Date: Wed, 17 Feb 2021 18:05:35 +0000 (+0100) Subject: testsuite/gcc.target/cris/biap.c: Add a Y+=X*2 to the Y+=X*4. X-Git-Tag: upstream/12.2.0~9627 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a7de0ffa34a9559919b14094b804175d7d9b446f;p=platform%2Fupstream%2Fgcc.git testsuite/gcc.target/cris/biap.c: Add a Y+=X*2 to the Y+=X*4. Also, tweak the scan-assembler regexps to include a tab, lest they may spuriously match file-paths in the emitted assembly code, should some be added at some point. And, add "mul", "move" and (non-addi-)"add" to insns that shouldn't appear. gcc/testsuite: * gcc.target/cris/biap.c: Add a Y+=X*2 to the Y+=X*4. --- diff --git a/gcc/testsuite/gcc.target/cris/biap.c b/gcc/testsuite/gcc.target/cris/biap.c index 1f3b436..f31e61c 100644 --- a/gcc/testsuite/gcc.target/cris/biap.c +++ b/gcc/testsuite/gcc.target/cris/biap.c @@ -2,10 +2,15 @@ See also PR37939. */ /* { dg-do compile } */ /* { dg-options "-O2" } */ -/* { dg-final { scan-assembler "addi" } } */ -/* { dg-final { scan-assembler-not "lsl" } } */ +/* { dg-final { scan-assembler-times "\taddi" 2 } } */ +/* { dg-final { scan-assembler-not "\tlsl|\tmul|\tmove|\tadd\[^i\]" } } */ int xyzzy (int r10, int r11) { return r11 * 4 + r10; } + +int plugh (int r10, int r11) +{ + return r11 * 2 + r10; +}