]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/20020115-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / 20020115-1.c
diff --git a/gcc/testsuite/gcc.dg/20020115-1.c b/gcc/testsuite/gcc.dg/20020115-1.c
deleted file mode 100644 (file)
index 9d4ea54..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-/* { dg-do compile } */
-
-/* Test attributes in function arguments.  */
-/* Origin: Aldy Hernandez <aldyh@redhat.com>.  */
-
-#define blah __attribute__((__mode__(QI)))
-
-extern void bar(int *);
-
-void foo (blah int abc)
-{
-
-       int b[sizeof(abc) == 1 ? 1 : -1];
-       bar (b);
-}