re PR c++/15745 (exception specification incorrectly changes the type of the exception thrown)

PR c++/15745
        * except.c (prepare_eh_type): Use type_decays_to.

From-SVN: r128174
This commit is contained in:
Jason Merrill 2007-09-05 23:33:46 -04:00 committed by Jason Merrill
parent 8c292a7298
commit 86ef5ebb1e
4 changed files with 26 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2007-09-05 Jason Merrill <jason@redhat.com>
PR c++/15745
* except.c (prepare_eh_type): Use type_decays_to.
PR c++/15097
* init.c (build_delete): Use build_headof to get the address of the
complete object if we aren't using the deleting destructor.

View File

@ -115,6 +115,9 @@ prepare_eh_type (tree type)
/* Peel off cv qualifiers. */
type = TYPE_MAIN_VARIANT (type);
/* Functions and arrays decay to pointers. */
type = type_decays_to (type);
return type;
}

View File

@ -0,0 +1,19 @@
// PR c++/15745
// { dg-do run }
typedef int IntArray[10];
IntArray i;
void test_array() throw (IntArray)
{
throw i;
}
int main ()
{
try
{
test_array();
}
catch (IntArray) {}
}

View File

@ -7,7 +7,7 @@ void f(int i) {
try {
int a[i];
throw &a; // { dg-error "variable size" }
} catch (int (&)[i]) { // { dg-error "variable size" }
} catch (int (*)[i]) { // { dg-error "variable size" }
}
}