corrected backends.txt

This commit is contained in:
Araq
2014-06-30 19:39:57 +02:00
parent 1d5938a0ef
commit b89495ef0f
4 changed files with 20 additions and 15 deletions

View File

@@ -9,6 +9,13 @@
## This module implements the code generator for the VM.
# Important things to remember:
# - The VM does not distinguish between definitions ('var x = y') and
# assignments ('x = y'). For simple data types that fit into a register
# this doesn't matter. However it matters for strings and other complex
# types that use the 'node' field; the reason is that slots are
# re-used in a register based VM. XXX Come up with an example.
import
unsigned, strutils, ast, astalgo, types, msgs, renderer, vmdef,
trees, intsets, rodread, magicsys, options, lowerings