blob: 1b94c82a2163059560f2d01d5bf2ae842d8732eb [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 %s -E | grep 'pre: 1 1 X'
2// RUN: %clang_cc1 %s -E | grep 'nopre: 1A(X)'
Chris Lattnerab30c032006-07-19 05:48:15 +00003
4/* Preexpansion of argument. */
Chris Lattner1e17abb2006-07-16 18:15:05 +00005#define A(X) 1 X
Chris Lattnerab30c032006-07-19 05:48:15 +00006pre: A(A(X))
7
8/* The ## operator disables preexpansion. */
9#undef A
10#define A(X) 1 ## X
11nopre: A(A(X))
Chris Lattner1e17abb2006-07-16 18:15:05 +000012