re PR target/37939 (CRIS port: no addi insn)
authorHans-Peter Nilsson <hp@axis.com>
Sat, 1 Nov 2008 22:19:26 +0000 (22:19 +0000)
committerHans-Peter Nilsson <hp@gcc.gnu.org>
Sat, 1 Nov 2008 22:19:26 +0000 (22:19 +0000)
PR target/37939
* gcc.target/cris/biap.c: New test.

From-SVN: r141525

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/cris/biap.c [new file with mode: 0644]

index cb6b072..d152f85 100644 (file)
@@ -1,3 +1,8 @@
+2008-11-01  Hans-Peter Nilsson  <hp@axis.com>
+
+       PR target/37939
+       * gcc.target/cris/biap.c: New test.
+
 2008-11-01  Janus Weil  <janus@gcc.gnu.org>
 
        PR fortran/36426
diff --git a/gcc/testsuite/gcc.target/cris/biap.c b/gcc/testsuite/gcc.target/cris/biap.c
new file mode 100644 (file)
index 0000000..1f3b436
--- /dev/null
@@ -0,0 +1,11 @@
+/* Make sure ADDI is combined and emitted successfully.
+   See also PR37939.  */
+/* { dg-do compile } */
+/* { dg-options "-O2" } */
+/* { dg-final { scan-assembler "addi" } } */
+/* { dg-final { scan-assembler-not "lsl" } } */
+
+int xyzzy (int r10, int r11)
+{
+  return r11 * 4 + r10;
+}