diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2019-08-20 17:59:23 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2019-08-20 17:59:23 +0000 |
commit | 9a83721404652cea39e9f02ae3e3b5c964602a5c (patch) | |
tree | 23e9541ce27049a103f6ed046be61592123e02c9 /test/PCH/empty-def-fwd-struct.h | |
parent | 676fbe8105eeb6ff4bb2ed261cb212fcfdbe7b63 (diff) | |
download | src-9a83721404652cea39e9f02ae3e3b5c964602a5c.tar.gz src-9a83721404652cea39e9f02ae3e3b5c964602a5c.zip |
Remove upstream files and directories from vendor/clang/dist that we do
not use. This saves on repository space, and reduces the number of tree
conflicts when merging.
Notes
Notes:
svn path=/vendor/clang/dist/; revision=351267
Diffstat (limited to 'test/PCH/empty-def-fwd-struct.h')
-rw-r--r-- | test/PCH/empty-def-fwd-struct.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/test/PCH/empty-def-fwd-struct.h b/test/PCH/empty-def-fwd-struct.h deleted file mode 100644 index dda9827ac8f4..000000000000 --- a/test/PCH/empty-def-fwd-struct.h +++ /dev/null @@ -1,12 +0,0 @@ -// RUN: %clang_cc1 -emit-pch -x c++-header %s -std=c++14 -o %t.pch -// RUN: %clang_cc1 -emit-llvm-only -x c++ /dev/null -std=c++14 -include-pch %t.pch -o %t.o -struct FVector; -struct FVector {}; -struct FBox { - FVector Min; - FBox(int); -}; -namespace { -FBox InvalidBoundingBox(0); -} - |