Stub out assembly matcher (.s -> MCInst) tblgen backend.
[oota-llvm.git] / utils / TableGen / AsmMatcherEmitter.cpp
1 //===- AsmMatcherEmitter.cpp - Generate an assembly matcher ---------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This tablegen backend emits a target specifier matcher for converting parsed
11 // assembly operands in the MCInst structures.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "AsmMatcherEmitter.h"
16 #include "CodeGenTarget.h"
17 #include "Record.h"
18 using namespace llvm;
19
20 void AsmMatcherEmitter::run(raw_ostream &O) {
21   EmitSourceFileHeader("Assembly Matcher Source Fragment", O);
22
23   CodeGenTarget Target;
24 }