mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-13 03:12:46 +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
9 lines
210 B
C++
9 lines
210 B
C++
// RUN: sed -e 's#//.*$##' %s > %t.cpp
|
|
// RUN: clang-include-fixer -db=fixed -input='foo= "foo.h","bar.h"' %t.cpp --
|
|
// RUN: FileCheck %s -input-file=%t.cpp
|
|
|
|
// CHECK: #include "foo.h"
|
|
// CHECK: foo f;
|
|
|
|
foo f;
|