diff options
Diffstat (limited to 'src/compiler.c')
-rw-r--r-- | src/compiler.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/compiler.c b/src/compiler.c index d18e767..9f564d8 100644 --- a/src/compiler.c +++ b/src/compiler.c @@ -21,6 +21,7 @@ #include <fwd/debug.h> #include <fwd/scope.h> #include <fwd/lower.h> +#include <fwd/move.h> /** * Read whole file into a buffer and return pointer to buffer. @@ -112,6 +113,9 @@ static int process(struct scope **parent, const char *file) if (analyze_root(scope, tree)) return -1; + if (mvcheck_root(tree)) + return -1; + return 0; } |