diff options
Diffstat (limited to 'gcc/graphite-scop-detection.c')
-rw-r--r-- | gcc/graphite-scop-detection.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/graphite-scop-detection.c b/gcc/graphite-scop-detection.c index c6413589e0d..d6bb0db2953 100644 --- a/gcc/graphite-scop-detection.c +++ b/gcc/graphite-scop-detection.c @@ -267,7 +267,7 @@ stmt_has_simple_data_refs_p (loop_p outermost_loop ATTRIBUTE_UNUSED, unsigned i; int j; bool res = true; - vec<data_reference_p> drs = vec<data_reference_p>(); + vec<data_reference_p> drs = vNULL; loop_p outer; for (outer = loop_containing_stmt (stmt); outer; outer = loop_outer (outer)) @@ -1585,7 +1585,7 @@ dot_all_scops (vec<scop_p> scops) DEBUG_FUNCTION void dot_scop (scop_p scop) { - vec<scop_p> scops = vec<scop_p>(); + vec<scop_p> scops = vNULL; if (scop) scops.safe_push (scop); |