* testsuite/objc/execute/paste.m: Remove.

From-SVN: r45782
This commit is contained in:
Neil Booth 2001-09-24 18:14:46 +00:00 committed by Neil Booth
parent b9da07dadd
commit dea2f2dbed
2 changed files with 4 additions and 21 deletions

View File

@ -1,3 +1,7 @@
2001-09-24 Neil Booth <neil@daikokuya.demon.co.uk>
* testsuite/objc/execute/paste.m: Remove.
2001-09-22 Joseph S. Myers <jsm28@cam.ac.uk>
* gcc.dg/format/builtin-1.c, gcc.dg/format/ext-6.c: New tests.

View File

@ -1,21 +0,0 @@
/* Copyright (C) 2000 Free Software Foundation, Inc. */
/* { dg-do run } */
/* { dg-options "" } */
#define str(x) #x
#define xstr(x) str(x)
#define glue(x, y) x ## y
extern int strcmp (const char *, const char *);
extern int puts (const char *);
extern void abort (void);
#define err(str) do { puts(str); abort(); } while (0)
int
main ()
{
/* Test Objective C names. */
if (strcmp (xstr (glue (@, ident)), "@ident"))
err ("Objective C names");
return 0;
}