From 153bbdf8685f3ab5f5b46806976ead9f90253154 Mon Sep 17 00:00:00 2001 From: BlackMinou Date: Thu, 26 Mar 2015 07:30:27 +0100 Subject: [PATCH] Adds the parallelization_phase to the frontend execution Signed-off-by: BlackMinou --- src/frontend/frontend.nit | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/frontend/frontend.nit b/src/frontend/frontend.nit index 9d39890..28e36bd 100644 --- a/src/frontend/frontend.nit +++ b/src/frontend/frontend.nit @@ -25,6 +25,7 @@ import serialization_phase import deriving import check_annotation import glsl_validation +import parallelization_phase redef class ToolContext # FIXME: there is conflict in linex in nitc, so use this trick to force invocation @@ -42,6 +43,7 @@ redef class ToolContext # Code genrated by the serialization phase must be analyzed for literals phases.add_edge(literal_phase, serialization_phase_pre_model) phases.add_edge(modelize_class_phase, serialization_phase_pre_model) + phases.add_edge(modelize_class_phase, parallelization_phase) return true end end -- 1.7.9.5