diff options
| author | Douglas Gregor <dgregor@apple.com> | 2012-04-04 04:06:51 +0000 |
|---|---|---|
| committer | Douglas Gregor <dgregor@apple.com> | 2012-04-04 04:06:51 +0000 |
| commit | bf13895a4baa980187208dc2cfac8fb2985a1c15 (patch) | |
| tree | 9ee0f7f817c7c957132b9cb8407684bdf8049cf7 /clang | |
| parent | 4a1049c8a2292e796f452ff5bf128aa3e095f1a0 (diff) | |
| download | bcm5719-llvm-bf13895a4baa980187208dc2cfac8fb2985a1c15.tar.gz bcm5719-llvm-bf13895a4baa980187208dc2cfac8fb2985a1c15.zip | |
Dependent-sequence initialization of a single element can be direct
list-initialization. Loosen an over-eager assertion to fix PR12453.
llvm-svn: 153995
Diffstat (limited to 'clang')
| -rw-r--r-- | clang/lib/Sema/SemaInit.cpp | 3 | ||||
| -rw-r--r-- | clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/basic.cpp | 14 |
2 files changed, 15 insertions, 2 deletions
diff --git a/clang/lib/Sema/SemaInit.cpp b/clang/lib/Sema/SemaInit.cpp index 78328ab8846..be48c7ea189 100644 --- a/clang/lib/Sema/SemaInit.cpp +++ b/clang/lib/Sema/SemaInit.cpp @@ -4807,7 +4807,8 @@ InitializationSequence::Perform(Sema &S, move(Args)); } assert(Kind.getKind() == InitializationKind::IK_Copy || - Kind.isExplicitCast()); + Kind.isExplicitCast() || + Kind.getKind() == InitializationKind::IK_DirectList); return ExprResult(Args.release()[0]); } diff --git a/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/basic.cpp b/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/basic.cpp index 5ebc22fd820..b30e0ec7856 100644 --- a/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/basic.cpp +++ b/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/basic.cpp @@ -1,5 +1,17 @@ -// RUN: %clang_cc1 -fsyntax-only -verify %s +// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s void f0() { int &ir = { 17 }; // expected-error{{reference to type 'int' cannot bind to an initializer list}} } + +namespace PR12453 { + template<typename T> + void f(int i) { + T x{i}; // expected-error{{non-constant-expression cannot be narrowed from type 'int' to 'float' in initializer list}} \ + // expected-note{{override this message by inserting an explicit cast}} + T y{i}; // expected-error{{non-constant-expression cannot be narrowed from type 'int' to 'float' in initializer list}} \ + // expected-note{{override this message by inserting an explicit cast}} + } + + template void f<float>(int); // expected-note{{in instantiation of function template specialization 'PR12453::f<float>' requested here}} +} |

