diff options
author | Joseph Myers <jsm@polyomino.org.uk> | 2004-01-09 20:03:58 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2004-01-09 20:03:58 +0000 |
commit | 3897f229d5ef6d5767e1050388c24ae5be2f71e8 (patch) | |
tree | 48c28794b46861cbc9594568abc9b07c1a04b91e /gcc/testsuite | |
parent | 0fab64a344486770d0acc827ab6b670543d58a15 (diff) | |
download | gcc-3897f229d5ef6d5767e1050388c24ae5be2f71e8.zip gcc-3897f229d5ef6d5767e1050388c24ae5be2f71e8.tar.gz gcc-3897f229d5ef6d5767e1050388c24ae5be2f71e8.tar.bz2 |
re PR c/11234 (-pedantic accepts function pointer <-> void*)
PR c/11234
* c-typeck.c (build_c_cast): If pedantic, warn for conversions
between function and object pointers.
(digest_init): When comparing a pointer to function type to the
target type, only apply TREE_TYPE once to the pointer to function
type.
* except.c (for_each_eh_label_1): Treat data as a pointer to a
function pointer rather than casting it to a function pointer.
(for_each_eh_label): Update caller.
* recog.h (struct insn_data): Use a struct or union for output.
* genoutput.c (output_insn_data): Update.
* final.c (get_insn_template): Update.
testsuite:
* gcc.dg/func-ptr-conv-1.c: New test.
* gcc.dg/weak/weak-6.c, gcc.dg/weak/weak-7.c: Update.
From-SVN: r75595
Diffstat (limited to 'gcc/testsuite')
-rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/func-ptr-conv-1.c | 56 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/weak/weak-6.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/weak/weak-7.c | 2 |
4 files changed, 64 insertions, 2 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 6b905bc..fa4e007 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2004-01-09 Joseph S. Myers <jsm@polyomino.org.uk> + + PR c/11234 + * gcc.dg/func-ptr-conv-1.c: New test. + * gcc.dg/weak/weak-6.c, gcc.dg/weak/weak-7.c: Update. + 2004-01-09 Kazu Hirata <kazu@cs.umass.edu> PR target/13380. diff --git a/gcc/testsuite/gcc.dg/func-ptr-conv-1.c b/gcc/testsuite/gcc.dg/func-ptr-conv-1.c new file mode 100644 index 0000000..4e42e5f --- /dev/null +++ b/gcc/testsuite/gcc.dg/func-ptr-conv-1.c @@ -0,0 +1,56 @@ +/* Conversions between function and object pointers are not permitted + in any version of ISO C, even with casts, except for the special + case of converting a null pointer constant to function pointer + type. Likewise, comparisons between function and object pointers + are not permitted. PR c/11234. */ +/* Origin: Joseph Myers <jsm@polyomino.org.uk> */ +/* { dg-do compile } */ +/* { dg-options "-pedantic" } */ + +void f(void); + +void *v1 = f; /* { dg-warning "pointer" "bad conversion" } */ +void *v2 = &f; /* { dg-warning "pointer" "bad conversion" } */ +void *v3 = (void *)f; /* { dg-warning "pointer" "bad conversion" } */ +void *v4 = (void *)&f; /* { dg-warning "pointer" "bad conversion" } */ +void *v5; +char *c1 = f; /* { dg-warning "pointer" "bad conversion" } */ +char *c2 = &f; /* { dg-warning "pointer" "bad conversion" } */ +char *c3 = (char *)f; /* { dg-warning "pointer" "bad conversion" } */ +char *c4 = (char *)&f; /* { dg-warning "pointer" "bad conversion" } */ +char *c5; +void (*fp)(void); +int a; + +void +g(void) +{ + v5 = f; /* { dg-warning "pointer" "bad conversion" } */ + v5 = &f; /* { dg-warning "pointer" "bad conversion" } */ + v5 = (void *)f; /* { dg-warning "pointer" "bad conversion" } */ + v5 = (void *)&f; /* { dg-warning "pointer" "bad conversion" } */ + c5 = f; /* { dg-warning "pointer" "bad conversion" } */ + c5 = &f; /* { dg-warning "pointer" "bad conversion" } */ + c5 = (char *)f; /* { dg-warning "pointer" "bad conversion" } */ + c5 = (char *)&f; /* { dg-warning "pointer" "bad conversion" } */ + fp = v5; /* { dg-warning "pointer" "bad conversion" } */ + fp = c5; /* { dg-warning "pointer" "bad conversion" } */ + fp = (void (*)(void))v5; /* { dg-warning "pointer" "bad conversion" } */ + fp = (void (*)(void))c5; /* { dg-warning "pointer" "bad conversion" } */ + (a ? f : v3); /* { dg-warning "pointer" "bad conversion" } */ + (a ? v2 : fp); /* { dg-warning "pointer" "bad conversion" } */ + /* The following are OK. */ + fp = 0; + fp = (void *)0; + fp = 0L; + fp = (void (*)(void))0; + fp = (void (*)(void))(void *)0; + (a ? f : 0); + (a ? f : (void *)0); + (a ? (void *)0 : fp); + (a ? 0 : fp); +} + +/* The following are OK. */ +void (*fp2)(void) = 0; +void (*fp3)(void) = (void *)0; diff --git a/gcc/testsuite/gcc.dg/weak/weak-6.c b/gcc/testsuite/gcc.dg/weak/weak-6.c index 531c581..711003c 100644 --- a/gcc/testsuite/gcc.dg/weak/weak-6.c +++ b/gcc/testsuite/gcc.dg/weak/weak-6.c @@ -3,5 +3,5 @@ extern void * foo (void); void * foo (void) { return (void *)foo; } /* { dg-error "precede" } */ - +/* { dg-error "function pointer" "pointer conversion" { target *-*-* } 5 } */ #pragma weak foo diff --git a/gcc/testsuite/gcc.dg/weak/weak-7.c b/gcc/testsuite/gcc.dg/weak/weak-7.c index bf2bbb9..7c4a4dc 100644 --- a/gcc/testsuite/gcc.dg/weak/weak-7.c +++ b/gcc/testsuite/gcc.dg/weak/weak-7.c @@ -3,5 +3,5 @@ extern void * foo (void); void * foo (void) { return (void *)foo; } /* { dg-error "precede" } */ - +/* { dg-error "function pointer" "pointer conversion" { target *-*-* } 5 } */ extern void * foo (void) __attribute__((weak)); |