OSDN Git Service

PR target/17984
authorhp <hp@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 13 Oct 2004 23:32:15 +0000 (23:32 +0000)
committerhp <hp@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 13 Oct 2004 23:32:15 +0000 (23:32 +0000)
* gcc.dg/cris-peep2-xsrand2.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@89010 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/cris-peep2-xsrand2.c [new file with mode: 0644]

index a861780..339f775 100644 (file)
@@ -1,3 +1,8 @@
+2004-10-14  Hans-Peter Nilsson  <hp@axis.com>
+
+       PR target/17984
+       * gcc.dg/cris-peep2-xsrand2.c: New test.
+
 2004-10-13  Andrew Pinski  <pinskia@physics.uc.edu>
 
        PR c++/17661
diff --git a/gcc/testsuite/gcc.dg/cris-peep2-xsrand2.c b/gcc/testsuite/gcc.dg/cris-peep2-xsrand2.c
new file mode 100644 (file)
index 0000000..30679b2
--- /dev/null
@@ -0,0 +1,34 @@
+/* { dg-do compile { target cris-*-* } } */
+/* { dg-final { scan-assembler "and.w -137," } } */
+/* { dg-final { scan-assembler "and.b -64," } } */
+/* { dg-final { scan-assembler "and.w -139," } } */
+/* { dg-final { scan-assembler "and.b -63," } } */
+/* { dg-final { scan-assembler-not "and.d" } } */
+/* { dg-options "-O2" } */
+
+/* PR target/17984.  Test-case based on
+   testsuite/gcc.dg/cris-peep2-xsrand.c.  */
+
+unsigned int
+andwlsr (unsigned int x)
+{
+  return (x >> 16) & 0xff77;
+}
+
+unsigned int
+andblsr (unsigned int x)
+{
+  return (x >> 24) & 0xc0;
+}
+
+int
+andwasr (int x)
+{
+  return (x >> 16) & 0xff75;
+}
+
+int
+andbasr (int x)
+{
+  return (x >> 24) & 0xc1;
+}