You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
376 B
14 lines
376 B
// RUN: %clang_cc1 -E -C %s | FileCheck -check-prefix=CHECK-C -strict-whitespace %s
|
|
// CHECK-C: boo bork bar // zot
|
|
|
|
// RUN: %clang_cc1 -E -CC %s | FileCheck -check-prefix=CHECK-CC -strict-whitespace %s
|
|
// CHECK-CC: boo bork /* blah*/ bar // zot
|
|
|
|
// RUN: %clang_cc1 -E %s | FileCheck -strict-whitespace %s
|
|
// CHECK: boo bork bar
|
|
|
|
|
|
#define FOO bork // blah
|
|
boo FOO bar // zot
|
|
|