]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/unsorted/xopt.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / unsorted / xopt.c
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/xopt.c b/gcc/testsuite/gcc.c-torture/unsorted/xopt.c
deleted file mode 100644 (file)
index b1a50f8..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-proc1 (a)
-     unsigned a;
-{
-  return (a >> 20) & 0x010fffff;
-}
-
-proc2 (a)
-     unsigned a;
-{
-  return (a << 17) & 0xfffff001;
-}
-
-proc3 (a)
-     unsigned a;
-{
-  return (a & 0xff00000a) >> 25;
-}
-
-proc4 (a)
-     unsigned a;
-{
-  return (a & 0x100000ff) << 25;
-}
-
-proc5 (a)
-     unsigned a;
-{
-  return (unsigned char) (a >> 24);
-}
-
-proc6 (a)
-     unsigned a;
-{
-  return ((unsigned char) a) << 30;
-}