Mercurial > hg > CbC > CbC_llvm
view clang/test/Preprocessor/_Pragma-newline.c @ 236:c4bab56944e8 llvm-original
LLVM 16
author | kono |
---|---|
date | Wed, 09 Nov 2022 17:45:10 +0900 |
parents | |
children |
line wrap: on
line source
// RUN: %clang_cc1 -E -o - %s | FileCheck %s // RUN: %clang_cc1 -E -P -o - %s | FileCheck %s // RUN: %clang_cc1 -E -fminimize-whitespace -o - %s | FileCheck %s // RUN: %clang_cc1 -E -fminimize-whitespace -P -o - %s | FileCheck %s // The PragmaAssumeNonNullHandler (and maybe others) passes an invalid // SourceLocation when inside a _Pragma. Ensure we still emit semantic // newlines. // See report at https://reviews.llvm.org/D104601#3105044 _Pragma("clang assume_nonnull begin") test _Pragma("clang assume_nonnull end") // CHECK: {{^}}#pragma clang assume_nonnull begin{{$}} // CHECK: test // CHECK: {{^}}#pragma clang assume_nonnull end{{$}}