mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 19:51:34 +08:00
tree-ssa-structalias.c (intra_create_variable_infos): Do not create fake variables for restrict-qualified pointers whose pointed-to...
* tree-ssa-structalias.c (intra_create_variable_infos): Do not create fake variables for restrict-qualified pointers whose pointed-to type contains a placeholder. From-SVN: r183427
This commit is contained in:
parent
ff06e6b1b8
commit
b31799f4e7
@ -1,3 +1,9 @@
|
||||
2012-01-23 Eric Botcazou <ebotcazou@adacore.com>
|
||||
|
||||
* tree-ssa-structalias.c (intra_create_variable_infos): Do not create
|
||||
fake variables for restrict-qualified pointers whose pointed-to type
|
||||
contains a placeholder.
|
||||
|
||||
2012-01-23 Richard Guenther <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/51949
|
||||
|
@ -5664,7 +5664,8 @@ intra_create_variable_infos (void)
|
||||
Treat restrict qualified references the same. */
|
||||
if (TYPE_RESTRICT (TREE_TYPE (t))
|
||||
&& ((DECL_BY_REFERENCE (t) && POINTER_TYPE_P (TREE_TYPE (t)))
|
||||
|| TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE))
|
||||
|| TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE)
|
||||
&& !type_contains_placeholder_p (TREE_TYPE (TREE_TYPE (t))))
|
||||
{
|
||||
struct constraint_expr lhsc, rhsc;
|
||||
varinfo_t vi;
|
||||
|
Loading…
x
Reference in New Issue
Block a user