blob: e548391e4ccf70b1b6914bf4a2ae010879fac6fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
//===-- X86AsmParser.cpp - Parse X86 assembly to MCInst instructions ------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "X86.h"
#include "llvm/Target/TargetRegistry.h"
#include "llvm/Target/TargetAsmParser.h"
using namespace llvm;
namespace {
class X86ATTAsmParser : public TargetAsmParser {
public:
explicit X86ATTAsmParser(const Target &);
};
}
X86ATTAsmParser::X86ATTAsmParser(const Target &T)
: TargetAsmParser(T)
{
}
namespace {
TargetAsmParser *createAsmParser(const Target &T) {
return new X86ATTAsmParser(T);
}
}
// Force static initialization.
extern "C" void LLVMInitializeX86AsmParser() {
TargetRegistry::RegisterAsmParser(TheX86_32Target, &createAsmParser);
TargetRegistry::RegisterAsmParser(TheX86_64Target, &createAsmParser);
}
|