Merge branch 'master' into wip

Conflicts:
	makefile
	src/codegen/arm/assembler.cpp
	src/codegen/powerpc/assembler.cpp
	src/codegen/x86/assembler.cpp
This commit is contained in:
Joshua Warner
2013-02-27 19:27:07 -07:00
124 changed files with 3345 additions and 1122 deletions

View File

@ -10,10 +10,10 @@
#include <stdio.h>
#include "common.h"
#include "avian/common.h"
#include <avian/vm/heap/heap.h>
#include <avian/vm/system/system.h>
#include "target.h"
#include "avian/target.h"
#include <avian/vm/codegen/assembler.h>
#include <avian/vm/codegen/architecture.h>

View File

@ -10,7 +10,6 @@
#include <stdio.h>
#include "common.h"
#include "test-harness.h"
// since we aren't linking against libstdc++, we must implement this

View File

@ -11,6 +11,7 @@
#ifndef TEST_HARNESS_H
#define TEST_HARNESS_H
#include "avian/common.h"
#include <stdio.h>
class Test {

View File

@ -11,7 +11,7 @@
#include <stdio.h>
#include "common.h"
#include "avian/common.h"
#include <avian/util/arg-parser.h>