diff options
author | Alp Toker <alp@nuanti.com> | 2013-12-13 20:49:58 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2013-12-13 20:49:58 +0000 |
commit | cbb9034e2a04f116bfd8cd62f69ef717afa10933 (patch) | |
tree | 64b8bbe479d4621042e921d9db0327e085cc6b7b /clang/test/CXX/temp/temp.decls/temp.variadic/p5.cpp | |
parent | f6d58ff5c46cdaeda4a43039eeacdcfa94bb8f51 (diff) | |
download | bcm5719-llvm-cbb9034e2a04f116bfd8cd62f69ef717afa10933.tar.gz bcm5719-llvm-cbb9034e2a04f116bfd8cd62f69ef717afa10933.zip |
Eliminate BinaryTypeTraitExpr
There's nothing special about type traits accepting two arguments.
This commit eliminates BinaryTypeTraitExpr and switches all related handling
over to TypeTraitExpr.
Also fixes a CodeGen failure with variadic type traits appearing in a
non-constant expression.
The BTT/TT prefix and evaluation code is retained as-is for now but will soon
be further cleaned up.
This is part of the ongoing work to unify type traits.
llvm-svn: 197273
Diffstat (limited to 'clang/test/CXX/temp/temp.decls/temp.variadic/p5.cpp')
-rw-r--r-- | clang/test/CXX/temp/temp.decls/temp.variadic/p5.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CXX/temp/temp.decls/temp.variadic/p5.cpp b/clang/test/CXX/temp/temp.decls/temp.variadic/p5.cpp index 3681d7757e9..d9c71cb77a4 100644 --- a/clang/test/CXX/temp/temp.decls/temp.variadic/p5.cpp +++ b/clang/test/CXX/temp/temp.decls/temp.variadic/p5.cpp @@ -313,7 +313,7 @@ void test_unexpanded_exprs(Types ...values) { // UnaryTypeTraitExpr __is_pod(Types); // expected-error{{expression contains unexpanded parameter pack 'Types'}} - // BinaryTypeTraitExpr + // Binary TypeTraitExpr __is_base_of(Types, T); // expected-error{{expression contains unexpanded parameter pack 'Types'}} __is_base_of(T, Types); // expected-error{{expression contains unexpanded parameter pack 'Types'}} |