mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Move SetTheory from utils/TableGen into lib/TableGen so Clang can use it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211100 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fc6e030047
commit
3b2a256332
@ -2,6 +2,7 @@ add_llvm_library(LLVMTableGen
|
|||||||
Error.cpp
|
Error.cpp
|
||||||
Main.cpp
|
Main.cpp
|
||||||
Record.cpp
|
Record.cpp
|
||||||
|
SetTheory.cpp
|
||||||
StringMatcher.cpp
|
StringMatcher.cpp
|
||||||
TableGenBackend.cpp
|
TableGenBackend.cpp
|
||||||
TGLexer.cpp
|
TGLexer.cpp
|
||||||
|
@ -12,10 +12,10 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#include "SetTheory.h"
|
|
||||||
#include "llvm/Support/Format.h"
|
#include "llvm/Support/Format.h"
|
||||||
#include "llvm/TableGen/Error.h"
|
#include "llvm/TableGen/Error.h"
|
||||||
#include "llvm/TableGen/Record.h"
|
#include "llvm/TableGen/Record.h"
|
||||||
|
#include "llvm/TableGen/SetTheory.h"
|
||||||
|
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
@ -26,7 +26,6 @@ add_tablegen(llvm-tblgen LLVM
|
|||||||
OptParserEmitter.cpp
|
OptParserEmitter.cpp
|
||||||
PseudoLoweringEmitter.cpp
|
PseudoLoweringEmitter.cpp
|
||||||
RegisterInfoEmitter.cpp
|
RegisterInfoEmitter.cpp
|
||||||
SetTheory.cpp
|
|
||||||
SubtargetEmitter.cpp
|
SubtargetEmitter.cpp
|
||||||
TableGen.cpp
|
TableGen.cpp
|
||||||
X86DisassemblerTables.cpp
|
X86DisassemblerTables.cpp
|
||||||
|
@ -15,7 +15,6 @@
|
|||||||
#ifndef CODEGEN_REGISTERS_H
|
#ifndef CODEGEN_REGISTERS_H
|
||||||
#define CODEGEN_REGISTERS_H
|
#define CODEGEN_REGISTERS_H
|
||||||
|
|
||||||
#include "SetTheory.h"
|
|
||||||
#include "llvm/ADT/ArrayRef.h"
|
#include "llvm/ADT/ArrayRef.h"
|
||||||
#include "llvm/ADT/BitVector.h"
|
#include "llvm/ADT/BitVector.h"
|
||||||
#include "llvm/ADT/DenseMap.h"
|
#include "llvm/ADT/DenseMap.h"
|
||||||
@ -23,6 +22,7 @@
|
|||||||
#include "llvm/CodeGen/MachineValueType.h"
|
#include "llvm/CodeGen/MachineValueType.h"
|
||||||
#include "llvm/Support/ErrorHandling.h"
|
#include "llvm/Support/ErrorHandling.h"
|
||||||
#include "llvm/TableGen/Record.h"
|
#include "llvm/TableGen/Record.h"
|
||||||
|
#include "llvm/TableGen/SetTheory.h"
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <set>
|
#include <set>
|
||||||
|
@ -15,11 +15,11 @@
|
|||||||
#ifndef CODEGEN_SCHEDULE_H
|
#ifndef CODEGEN_SCHEDULE_H
|
||||||
#define CODEGEN_SCHEDULE_H
|
#define CODEGEN_SCHEDULE_H
|
||||||
|
|
||||||
#include "SetTheory.h"
|
|
||||||
#include "llvm/ADT/DenseMap.h"
|
#include "llvm/ADT/DenseMap.h"
|
||||||
#include "llvm/ADT/StringMap.h"
|
#include "llvm/ADT/StringMap.h"
|
||||||
#include "llvm/Support/ErrorHandling.h"
|
#include "llvm/Support/ErrorHandling.h"
|
||||||
#include "llvm/TableGen/Record.h"
|
#include "llvm/TableGen/Record.h"
|
||||||
|
#include "llvm/TableGen/SetTheory.h"
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
|
||||||
|
@ -12,13 +12,13 @@
|
|||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#include "TableGenBackends.h" // Declares all backends.
|
#include "TableGenBackends.h" // Declares all backends.
|
||||||
#include "SetTheory.h"
|
|
||||||
#include "llvm/Support/CommandLine.h"
|
#include "llvm/Support/CommandLine.h"
|
||||||
#include "llvm/Support/PrettyStackTrace.h"
|
#include "llvm/Support/PrettyStackTrace.h"
|
||||||
#include "llvm/Support/Signals.h"
|
#include "llvm/Support/Signals.h"
|
||||||
#include "llvm/TableGen/Error.h"
|
#include "llvm/TableGen/Error.h"
|
||||||
#include "llvm/TableGen/Main.h"
|
#include "llvm/TableGen/Main.h"
|
||||||
#include "llvm/TableGen/Record.h"
|
#include "llvm/TableGen/Record.h"
|
||||||
|
#include "llvm/TableGen/SetTheory.h"
|
||||||
|
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user