Added X86 codegeneration interface and tests

This commit is contained in:
Dmitry Boulytchev 2018-03-07 10:18:30 +03:00
parent 77ec064c5c
commit de018e76aa
12 changed files with 320 additions and 34 deletions

View file

@ -4,6 +4,7 @@ SHELL := /bin/bash
all:
pushd src && make && popd
pushd runtime && make && popd
install: ;
@ -12,5 +13,6 @@ regression:
clean:
pushd src && make clean && popd
pushd runtime && make clean && popd
pushd regression && make clean && popd