1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
14 lines
211 B
C
14 lines
211 B
C
// RUN: %clang_cc1 %s -E | grep "^ 4"
|
|
#define FOO __LINE__
|
|
|
|
FOO
|
|
|
|
// PR3579 - This should expand to the __LINE__ of the ')' not of the X.
|
|
// RUN: %clang_cc1 %s -E | grep "^A 13"
|
|
|
|
#define X() __LINE__
|
|
|
|
A X(
|
|
|
|
)
|