diff options
author | Marek Polacek <polacek@redhat.com> | 2016-08-18 16:38:49 +0000 |
---|---|---|
committer | Marek Polacek <mpolacek@gcc.gnu.org> | 2016-08-18 16:38:49 +0000 |
commit | a76989dc7c9236214856db196da88a739f0e7baa (patch) | |
tree | 3ee35cf53621a4d475bebb671b56ce36af2f079e /gcc/c-family | |
parent | f87e22c52128d9d9c9a72a81ae3922b46ce52e59 (diff) | |
download | gcc-a76989dc7c9236214856db196da88a739f0e7baa.zip gcc-a76989dc7c9236214856db196da88a739f0e7baa.tar.gz gcc-a76989dc7c9236214856db196da88a739f0e7baa.tar.bz2 |
re PR c/71514 (ICE on C11 code with atomic exchange at -O1 and above on x86_64-linux-gnu: in copy_reference_ops_from_ref, at tree-ssa-sccvn.c:879)
PR c/71514
* c-common.c (get_atomic_generic_size): Disallow pointer-to-function
and pointer-to-VLA.
* gcc.dg/pr71514.c: New test.
From-SVN: r239581
Diffstat (limited to 'gcc/c-family')
-rw-r--r-- | gcc/c-family/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/c-family/c-common.c | 14 |
2 files changed, 20 insertions, 0 deletions
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog index ada2be0..cc82370 100644 --- a/gcc/c-family/ChangeLog +++ b/gcc/c-family/ChangeLog @@ -1,3 +1,9 @@ +2016-08-18 Marek Polacek <polacek@redhat.com> + + PR c/71514 + * c-common.c (get_atomic_generic_size): Disallow pointer-to-function + and pointer-to-VLA. + 2016-08-16 David Malcolm <dmalcolm@redhat.com> PR c/72857 diff --git a/gcc/c-family/c-common.c b/gcc/c-family/c-common.c index d413146..22e3844 100644 --- a/gcc/c-family/c-common.c +++ b/gcc/c-family/c-common.c @@ -11081,6 +11081,20 @@ get_atomic_generic_size (location_t loc, tree function, function); return 0; } + else if (TYPE_SIZE_UNIT (TREE_TYPE (type)) + && TREE_CODE ((TYPE_SIZE_UNIT (TREE_TYPE (type)))) + != INTEGER_CST) + { + error_at (loc, "argument %d of %qE must be a pointer to a constant " + "size type", x + 1, function); + return 0; + } + else if (FUNCTION_POINTER_TYPE_P (type)) + { + error_at (loc, "argument %d of %qE must not be a pointer to a " + "function", x + 1, function); + return 0; + } tree type_size = TYPE_SIZE_UNIT (TREE_TYPE (type)); size = type_size ? tree_to_uhwi (type_size) : 0; if (size != size_0) |