Commit dea2f2db by Neil Booth Committed by Neil Booth

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

From-SVN: r45782
parent b9da07da
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> 2001-09-22 Joseph S. Myers <jsm28@cam.ac.uk>
* gcc.dg/format/builtin-1.c, gcc.dg/format/ext-6.c: New tests. * gcc.dg/format/builtin-1.c, gcc.dg/format/ext-6.c: New tests.
......
/* 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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment