Daniel Dunbar | 8fbe78f | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -E %s | FileCheck -strict-whitespace %s |
Chris Lattner | b10969b | 2006-07-30 07:33:49 +0000 | [diff] [blame] | 2 | |
3 | #define R_PAREN ) | ||||
4 | |||||
5 | #define FUNC(a) a | ||||
6 | |||||
7 | static int glob = (1 + FUNC(1 R_PAREN ); | ||||
8 | |||||
Edward O'Callaghan | 0e2f793 | 2009-10-26 22:51:02 +0000 | [diff] [blame] | 9 | // CHECK: static int glob = (1 + 1 ); |
10 |