* gcc.dg/cpp/paste2.c: Update test.
* objc/execute/paste.m: New test.
From-SVN: r37597
+2000-11-20 Neil Booth <neilb@earthling.net>
+
+ * gcc.dg/cpp/paste2.c: Update test.
+ * objc/execute/paste.m: New test.
+
2000-11-20 Joseph S. Myers <jsm28@cam.ac.uk>
* gcc.dg/c99-condexpr-1.c: New test.
err ("Various operator pasting");
if (strcmp (hh, "%:%:"))
err ("Pasted digraph spelling");
+ if ((glue (., 1) glue (!, =) .1))
+ err ("Pasted numbers 1");
/* glue3 here will only work if we paste left-to-right. If a
future implementation does not do this, change the test. */
- if ((glue (., 0) glue (=, =) .0) + (glue3 (1.0e, +, 1) == 10.0) != 2)
- err ("Pasted numbers");
+ if (glue3 (1.0e, +, 1) != 10.0)
+ err ("Pasted numbers 2");
}
return 0;
--- /dev/null
+/* 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;
+}