xref: /minix3/external/bsd/llvm/dist/clang/test/Preprocessor/_Pragma-physloc.c (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1 // RUN: %clang_cc1 -E %s | FileCheck --strict-whitespace %s
2 // CHECK: {{^}}#pragma x y z{{$}}
3 // CHECK: {{^}}#pragma a b c{{$}}
4 
5 _Pragma("x y z")
6 _Pragma("a b c")
7 
8