llvm-6502/utils/TableGen/AsmMatcherEmitter.cpp
2009-07-11 19:39:44 +00:00

25 lines
793 B
C++

//===- AsmMatcherEmitter.cpp - Generate an assembly matcher ---------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This tablegen backend emits a target specifier matcher for converting parsed
// assembly operands in the MCInst structures.
//
//===----------------------------------------------------------------------===//
#include "AsmMatcherEmitter.h"
#include "CodeGenTarget.h"
#include "Record.h"
using namespace llvm;
void AsmMatcherEmitter::run(raw_ostream &O) {
EmitSourceFileHeader("Assembly Matcher Source Fragment", O);
CodeGenTarget Target;
}