]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/ext/conv1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / ext / conv1.C
diff --git a/gcc/testsuite/g++.dg/ext/conv1.C b/gcc/testsuite/g++.dg/ext/conv1.C
deleted file mode 100644 (file)
index 6c16fe4..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-// Test for backwards brain-damage compatibility with -fpermissive.
-// { dg-options "-fpermissive -w" }
-
-void f ();
-void f (int *);
-void g (int);
-
-int main ()
-{
-  void *v = 1234;
-  void (*p)() = v;
-  int i = v;
-  f (i);
-  f (v);
-  g (v);
-  enum { a } b = i;
-  void (*p2)(int) = p;
-  unsigned *ip = &i;
-}