aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-operands.h
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2007-12-14 14:21:41 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2007-12-14 14:21:41 +0000
commitae4dbd44baaea8b195e792c1865d02e8bf6c36b8 (patch)
tree21ef4ec05b828e6f1466e7a77d7a896095ce86bf /gcc/tree-ssa-operands.h
parent2c9fd13e905b68909db52d6868645790f935e35a (diff)
downloadgcc-ae4dbd44baaea8b195e792c1865d02e8bf6c36b8.zip
gcc-ae4dbd44baaea8b195e792c1865d02e8bf6c36b8.tar.gz
gcc-ae4dbd44baaea8b195e792c1865d02e8bf6c36b8.tar.bz2
re PR middle-end/34462 (tree check: expected ssa_name, have struct_field_tag in vuses_compare, at tree-vn.c:118)
2007-12-14 Richard Guenther <rguenther@suse.de> PR middle-end/34462 * tree-ssa-operands.h (create_ssa_artificial_load_stmt): Add parameter to say whether to unlink immediate uses. * tree-ssa-operands.c (create_ssa_artificial_load_stmt): Do not mark the artificial stmt as modified. Unlink immediate uses only if requested. * tree-ssa-dom.c (record_equivalences_from_stmt): Update caller. * tree-ssa-pre.c (insert_fake_stores): Likewise. * gcc.c-torture/compile/20071214-1.c: New testcase. From-SVN: r130931
Diffstat (limited to 'gcc/tree-ssa-operands.h')
-rw-r--r--gcc/tree-ssa-operands.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-operands.h b/gcc/tree-ssa-operands.h
index 4dc344e..f48245f 100644
--- a/gcc/tree-ssa-operands.h
+++ b/gcc/tree-ssa-operands.h
@@ -210,7 +210,7 @@ extern void free_stmt_operands (tree);
extern bool verify_imm_links (FILE *f, tree var);
extern void copy_virtual_operands (tree, tree);
-extern void create_ssa_artificial_load_stmt (tree, tree);
+extern void create_ssa_artificial_load_stmt (tree, tree, bool);
extern void dump_immediate_uses (FILE *file);
extern void dump_immediate_uses_for (FILE *file, tree var);