aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>2009-02-12 17:40:37 -0500
committerJason Merrill <jason@gcc.gnu.org>2009-02-12 17:40:37 -0500
commited7284dd13b289163440589eda15cccd9ca3ea71 (patch)
tree4baa420d602ecb2cfaaabef3775e96640f5699d8 /gcc
parentba18104976b9670c3bc4b59e90c4cf55d2f66d1a (diff)
downloadgcc-ed7284dd13b289163440589eda15cccd9ca3ea71.zip
gcc-ed7284dd13b289163440589eda15cccd9ca3ea71.tar.gz
gcc-ed7284dd13b289163440589eda15cccd9ca3ea71.tar.bz2
re PR c++/38950 (ICE: deducing function template arguments for array type.)
PR c++/38950 * pt.c (unify)[TEMPLATE_PARM_INDEX]: Convert to the tsubsted type. From-SVN: r144139
Diffstat (limited to 'gcc')
-rw-r--r--gcc/cp/ChangeLog5
-rw-r--r--gcc/cp/pt.c2
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/g++.dg/template/array20.C10
4 files changed, 21 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 7a764b1..7ead4b2 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,8 @@
+2009-02-12 Jason Merrill <jason@redhat.com>
+
+ PR c++/38950
+ * pt.c (unify)[TEMPLATE_PARM_INDEX]: Convert to the tsubsted type.
+
2009-02-11 Jason Merrill <jason@redhat.com>
PR c++/39153
diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c
index 3176dc2..db8886c 100644
--- a/gcc/cp/pt.c
+++ b/gcc/cp/pt.c
@@ -13457,7 +13457,7 @@ unify (tree tparms, tree targs, tree parm, tree arg, int strict)
/* Convert the ARG to the type of PARM; the deduced non-type
template argument must exactly match the types of the
corresponding parameter. */
- arg = fold (build_nop (TREE_TYPE (parm), arg));
+ arg = fold (build_nop (tparm, arg));
else if (uses_template_parms (tparm))
/* We haven't deduced the type of this parameter yet. Try again
later. */
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 7b68c65..5a940ef 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2009-02-12 Jason Merrill <jason@redhat.com>
+
+ PR c++/38950
+ * g++.dg/template/array20.C: New test.
+
2009-02-12 Uros Bizjak <ubizjak@gmail.com>
* gcc.dg/torture/fp-int-convert-float128-timode.c: Do not check
diff --git a/gcc/testsuite/g++.dg/template/array20.C b/gcc/testsuite/g++.dg/template/array20.C
new file mode 100644
index 0000000..2e5c1e3
--- /dev/null
+++ b/gcc/testsuite/g++.dg/template/array20.C
@@ -0,0 +1,10 @@
+// PR c++/38950
+
+template <typename T, T N> void f(T(&)[N]);
+
+int main() {
+ int x[2];
+ unsigned int y[2];
+ f(x); // works
+ f(y); // ICE
+}