brintos

brintos / llvm-project-archived public Read only

0
0
Text · 455 B · d27f5b3 Raw
14 lines · c
1// RUN: %clang_cc1 -E %s | FileCheck %s --match-full-lines --strict-whitespace --check-prefix CHECK-12// CHECK-1:a: x3// RUN: %clang_cc1 -E %s | FileCheck %s --match-full-lines --strict-whitespace --check-prefix CHECK-24// CHECK-2:b: x y, z,h5// RUN: %clang_cc1 -E %s | FileCheck %s --match-full-lines --strict-whitespace --check-prefix CHECK-36// CHECK-3:c: foo(x)7 8#define A(b, c...) b c9a: A(x)10b: A(x, y, z,h)11 12#define B(b, c...) foo(b, ## c)13c: B(x)14