]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.mike/asm2.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / asm2.C
diff --git a/gcc/testsuite/g++.old-deja/g++.mike/asm2.C b/gcc/testsuite/g++.old-deja/g++.mike/asm2.C
deleted file mode 100644 (file)
index b5f11e1..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-// Compile with -S, there should be no references to
-// LTRAMP in the output.
-
-extern "C" int printf (const char *, ...);
-
-void
-sub2 (void (*func) ())
-{
-  (*func) ();
-}
-
-int
-main(void)
-{
-  extern void sub (void);
-
-  sub2 (sub);
-}
-
-void
-sub (void)
-{
-  printf ("hello world\n");
-}