Home | History | Annotate | Download | only in Preprocessor
      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