diff options
| author | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-10-12 23:29:02 +0000 |
|---|---|---|
| committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-10-12 23:29:02 +0000 |
| commit | 88d10b68e0975510477d87e585c020a929739778 (patch) | |
| tree | c56bd85a61a3b1e1dca2ba7cf5cda6882d290f55 /clang/test | |
| parent | d9fa56a4fb24c4763adf2ea4e16b04a4f43e3e08 (diff) | |
| download | bcm5719-llvm-88d10b68e0975510477d87e585c020a929739778.tar.gz bcm5719-llvm-88d10b68e0975510477d87e585c020a929739778.zip | |
Revert r284008. This is us to fail to instantiate static data members in some
cases. I'm working on reducing a testcase.
llvm-svn: 284081
Diffstat (limited to 'clang/test')
| -rw-r--r-- | clang/test/Modules/Inputs/PR28752/Subdir1/b.h | 1 | ||||
| -rw-r--r-- | clang/test/Modules/Inputs/PR28752/Subdir1/c.h | 0 | ||||
| -rw-r--r-- | clang/test/Modules/Inputs/PR28752/Subdir1/module.modulemap | 5 | ||||
| -rw-r--r-- | clang/test/Modules/Inputs/PR28752/a.h | 1 | ||||
| -rw-r--r-- | clang/test/Modules/Inputs/PR28752/module.modulemap | 1 | ||||
| -rw-r--r-- | clang/test/Modules/Inputs/PR28752/vector | 28 | ||||
| -rw-r--r-- | clang/test/Modules/pr28752.cpp | 19 |
7 files changed, 0 insertions, 55 deletions
diff --git a/clang/test/Modules/Inputs/PR28752/Subdir1/b.h b/clang/test/Modules/Inputs/PR28752/Subdir1/b.h deleted file mode 100644 index 3b3a25f213f..00000000000 --- a/clang/test/Modules/Inputs/PR28752/Subdir1/b.h +++ /dev/null @@ -1 +0,0 @@ -#include <vector> diff --git a/clang/test/Modules/Inputs/PR28752/Subdir1/c.h b/clang/test/Modules/Inputs/PR28752/Subdir1/c.h deleted file mode 100644 index e69de29bb2d..00000000000 --- a/clang/test/Modules/Inputs/PR28752/Subdir1/c.h +++ /dev/null diff --git a/clang/test/Modules/Inputs/PR28752/Subdir1/module.modulemap b/clang/test/Modules/Inputs/PR28752/Subdir1/module.modulemap deleted file mode 100644 index 8d3bfe996f5..00000000000 --- a/clang/test/Modules/Inputs/PR28752/Subdir1/module.modulemap +++ /dev/null @@ -1,5 +0,0 @@ -module b { - module "b.h" { header "b.h" export * } - module "c.h" { header "c.h" export * } - export * -} diff --git a/clang/test/Modules/Inputs/PR28752/a.h b/clang/test/Modules/Inputs/PR28752/a.h deleted file mode 100644 index 3b3a25f213f..00000000000 --- a/clang/test/Modules/Inputs/PR28752/a.h +++ /dev/null @@ -1 +0,0 @@ -#include <vector> diff --git a/clang/test/Modules/Inputs/PR28752/module.modulemap b/clang/test/Modules/Inputs/PR28752/module.modulemap deleted file mode 100644 index caf888fc474..00000000000 --- a/clang/test/Modules/Inputs/PR28752/module.modulemap +++ /dev/null @@ -1 +0,0 @@ -module a { header "a.h" export * } diff --git a/clang/test/Modules/Inputs/PR28752/vector b/clang/test/Modules/Inputs/PR28752/vector deleted file mode 100644 index fc5dafae1f9..00000000000 --- a/clang/test/Modules/Inputs/PR28752/vector +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef VECTOR -#define VECTOR -template <bool, typename> struct B; -template <typename _Tp> struct B<true, _Tp> { typedef _Tp type; }; -namespace std { -template <typename> struct D { - - template <typename _Alloc2> struct F { - static const bool value = 0; - }; - - template <typename _Alloc2> - typename B<F<_Alloc2>::value, _Alloc2>::type _S_select(_Alloc2); - template <typename _Alloc2> - static - typename B<!F<_Alloc2>::value, _Alloc2>::type _S_select(_Alloc2); -}; -template <typename _Alloc> -template <typename _Alloc2> -const bool D<_Alloc>::F<_Alloc2>::value; - -template <typename> class vector { -public: - vector(int); - vector(vector &) : vector(D<bool>::_S_select((bool)0)) {} -}; -} -#endif // VECTOR
\ No newline at end of file diff --git a/clang/test/Modules/pr28752.cpp b/clang/test/Modules/pr28752.cpp deleted file mode 100644 index e73a54b89eb..00000000000 --- a/clang/test/Modules/pr28752.cpp +++ /dev/null @@ -1,19 +0,0 @@ -// RUN: rm -rf %t -// RUN: %clang_cc1 -std=c++11 -nostdsysteminc -I%S/Inputs/PR28752 -verify %s -// RUN: %clang_cc1 -std=c++11 -nostdsysteminc -fmodules -fmodule-map-file=%S/Inputs/PR28752/Subdir1/module.modulemap -fmodule-map-file=%S/Inputs/PR28752/module.modulemap -fmodules-cache-path=%t -I%S/Inputs/PR28752 -I%S/Inputs/PR28752/Subdir1 -verify %s - -#include "a.h" -#include "Subdir1/c.h" -#include <vector> - -class TClingClassInfo { - std::vector<int> fIterStack; -}; - -TClingClassInfo *a; -class TClingBaseClassInfo { - TClingBaseClassInfo() { new TClingClassInfo(*a); } -}; - -// expected-no-diagnostics - |

