* gcc.c-torture/compile/20021124-1.c: New test.
authorEric Botcazou <ebotcazou@libertysurf.fr>
Sun, 24 Nov 2002 22:20:42 +0000 (22:20 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Sun, 24 Nov 2002 22:20:42 +0000 (22:20 +0000)
From-SVN: r59441

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/compile/20021124-1.c [new file with mode: 0644]

index 94ebf42ae136b359e737be8412f2ca84eb8a4744..f6c85f1380bbd57e06a71d1addcb48b9d2175516 100644 (file)
@@ -1,3 +1,7 @@
+2002-11-24  Eric Botcazou  <ebotcazou@libertysurf.fr>
+
+       * gcc.c-torture/compile/20021124-1.c: New test.
+
 2002-11-22  Mark Mitchell  <mark@codesourcery.com>
 
        * g++.dg/abi/rtti2.C: New test.
diff --git a/gcc/testsuite/gcc.c-torture/compile/20021124-1.c b/gcc/testsuite/gcc.c-torture/compile/20021124-1.c
new file mode 100644 (file)
index 0000000..3ab2b2e
--- /dev/null
@@ -0,0 +1,7 @@
+/* PR optimization/8275 */
+/* Contributed by Volker Reichelt. */
+
+unsigned int foo (unsigned int u)
+{
+  return (u >> 32) & 0xffff;
+}