mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-25 17:31:02 +00:00
43356f56bd
Makes the name of this directory consistent with the names of the other directories in clang-tools-extra. Similar to r356254. No intended behavior change. Differential Revision: https://reviews.llvm.org/D59750 llvm-svn: 356897
11 lines
244 B
C++
11 lines
244 B
C++
// RUN: sed -e 's#//.*$##' %s > %t.cpp
|
|
// RUN: clang-include-fixer -db=yaml -input=%p/Inputs/fake_yaml_db.yaml %t.cpp --
|
|
// RUN: FileCheck %s -input-file=%t.cpp
|
|
|
|
// CHECK-NOT: #include
|
|
// CHECK: doesnotexist f;
|
|
|
|
namespace b {
|
|
doesnotexist f;
|
|
}
|