match $ correctly with \r\n, unfortunately.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90907
91177308-0d34-0410-b5e6-
96231b3b80d8
// RUN: clang-cc -E -dM %s -o - | FileCheck %s -strict-whitespace
// Space at end even without expansion tokens
-// CHECK: {{#define A[(]x[)] $}}
+// CHECK: #define A(x)
#define A(x)
// Space before expansion list.
-// CHECK: {{#define B[(]x,y[)] x y$}}
+// CHECK: #define B(x,y) x y
#define B(x,y)x y
// No space in argument list.