Move SetTheory from utils/TableGen into lib/TableGen so Clang can use it.

llvm-svn: 211100
This commit is contained in:
James Molloy 2014-06-17 13:10:38 +00:00
parent e5b03cb790
commit f1653b5260
7 changed files with 5 additions and 5 deletions

View File

@ -2,6 +2,7 @@ add_llvm_library(LLVMTableGen
Error.cpp
Main.cpp
Record.cpp
SetTheory.cpp
StringMatcher.cpp
TableGenBackend.cpp
TGLexer.cpp

View File

@ -12,10 +12,10 @@
//
//===----------------------------------------------------------------------===//
#include "SetTheory.h"
#include "llvm/Support/Format.h"
#include "llvm/TableGen/Error.h"
#include "llvm/TableGen/Record.h"
#include "llvm/TableGen/SetTheory.h"
using namespace llvm;

View File

@ -26,7 +26,6 @@ add_tablegen(llvm-tblgen LLVM
OptParserEmitter.cpp
PseudoLoweringEmitter.cpp
RegisterInfoEmitter.cpp
SetTheory.cpp
SubtargetEmitter.cpp
TableGen.cpp
X86DisassemblerTables.cpp

View File

@ -15,7 +15,6 @@
#ifndef CODEGEN_REGISTERS_H
#define CODEGEN_REGISTERS_H
#include "SetTheory.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/BitVector.h"
#include "llvm/ADT/DenseMap.h"
@ -23,6 +22,7 @@
#include "llvm/CodeGen/MachineValueType.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/TableGen/Record.h"
#include "llvm/TableGen/SetTheory.h"
#include <cstdlib>
#include <map>
#include <set>

View File

@ -15,11 +15,11 @@
#ifndef CODEGEN_SCHEDULE_H
#define CODEGEN_SCHEDULE_H
#include "SetTheory.h"
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/StringMap.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/TableGen/Record.h"
#include "llvm/TableGen/SetTheory.h"
namespace llvm {

View File

@ -12,13 +12,13 @@
//===----------------------------------------------------------------------===//
#include "TableGenBackends.h" // Declares all backends.
#include "SetTheory.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/PrettyStackTrace.h"
#include "llvm/Support/Signals.h"
#include "llvm/TableGen/Error.h"
#include "llvm/TableGen/Main.h"
#include "llvm/TableGen/Record.h"
#include "llvm/TableGen/SetTheory.h"
using namespace llvm;