From c6803d43effa943273a5c6db91a4ec1d39076932 Mon Sep 17 00:00:00 2001 From: Richard Guenther Date: Sat, 4 Apr 2009 14:12:10 +0000 Subject: tree-ssa.c (verify_ssa): With -O0 we do not need VOPs. 2009-04-04 Richard Guenther * tree-ssa.c (verify_ssa): With -O0 we do not need VOPs. * tree-ssa-operands.c (append_vdef): Do not append VOPs at -O0. (append_vuse): Likewise. From-SVN: r145539 --- gcc/tree-ssa-operands.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'gcc/tree-ssa-operands.c') diff --git a/gcc/tree-ssa-operands.c b/gcc/tree-ssa-operands.c index 56d8e84..f4df750 100644 --- a/gcc/tree-ssa-operands.c +++ b/gcc/tree-ssa-operands.c @@ -608,6 +608,9 @@ append_use (tree *use_p) static inline void append_vdef (tree var) { + if (!optimize) + return; + gcc_assert ((build_vdef == NULL_TREE || build_vdef == var) && (build_vuse == NULL_TREE @@ -623,6 +626,9 @@ append_vdef (tree var) static inline void append_vuse (tree var) { + if (!optimize) + return; + gcc_assert (build_vuse == NULL_TREE || build_vuse == var); -- cgit v1.1