aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/code-gen2.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.brendan/code-gen2.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.brendan/code-gen2.C18
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.brendan/code-gen2.C b/gcc/testsuite/g++.old-deja/g++.brendan/code-gen2.C
deleted file mode 100644
index 133755e894d..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.brendan/code-gen2.C
+++ /dev/null
@@ -1,18 +0,0 @@
-// GROUPS passed code-generation
-// Check that declarations with initializations are executed
-// correctly.
-
-extern "C" void printf (char *, ...);
-
-int main ()
-{
- char buff[40] ;
- char *tmp = &buff[0]; // also fails for char *tmp = buff;
-
- if ((unsigned int) tmp != (unsigned int) &buff[0])
- printf ("FAIL\n");
- else
- printf ("PASS\n");
-
- return 0;
-}