Merge pull request #273 from kinke/merge-2.061-2

Merged x86 and x86_64 assembly parsers.
This commit is contained in:
David Nadlinger
2013-01-29 04:53:15 -08:00
3 changed files with 981 additions and 3918 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -144,8 +144,10 @@ struct AsmParserCommon
};
AsmParserCommon* asmparser = NULL;
#include "asm-x86-32.h"
#include "asm-x86-64.h"
#include "asm-x86.h" // x86 assembly parser
#define ASM_X86_64
#include "asm-x86.h" // x86_64 assembly parser
#undef ASM_X86_64
bool d_have_inline_asm() { return true; }