aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/asm2.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.mike/asm2.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.mike/asm2.C27
1 files changed, 0 insertions, 27 deletions
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
index 59771d6c6a3..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.mike/asm2.C
+++ /dev/null
@@ -1,27 +0,0 @@
-// Compile with -S, there should be no references to
-// LTRAMP in the output.
-
-extern "C"
-{
- int printf (char *, ...);
-}
-
-void
-sub2 (void (*func) ())
-{
- (*func) ();
-}
-
-int
-main(void)
-{
- extern void sub (void);
-
- sub2 (sub);
-}
-
-void
-sub (void)
-{
- printf ("hello world\n");
-}