Mercurial > hg > CbC > CbC_llvm
annotate clang/test/Driver/nostdincxx.cpp @ 207:2e18cbf3894f
LLVM12
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 08 Jun 2021 06:07:14 +0900 |
parents | 1d019706d866 |
children | c4bab56944e8 |
rev | line source |
---|---|
207 | 1 // RUN: not %clangxx -nostdinc %s 2>&1 | FileCheck %s |
150 | 2 // RUN: not %clangxx -nostdinc++ %s 2>&1 | FileCheck %s |
207 | 3 // RUN: not %clangxx -nostdlibinc %s 2>&1 | FileCheck %s |
4 // RUN: not %clangxx -triple x86_64-unknown-unknown-gnu -fsyntax-only -nostdinc -nostdinc++ %s 2>&1 | FileCheck /dev/null --implicit-check-not=-Wunused-command-line-argument | |
150 | 5 // CHECK: file not found |
6 #include <vector> | |
7 | |
8 // MSVC and PS4 have C++ headers in the same directory as C headers. | |
9 // UNSUPPORTED: ms-sdk, ps4 |