1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

Finish inverting the MC -> Object dependency.

There were still some disassembler bits in lib/MC, but their use of Object
was only visible in the includes they used, not in the symbols.

llvm-svn: 213808
This commit is contained in:
Rafael Espindola 2014-07-23 22:26:07 +00:00
parent dd1be32354
commit d69ab9179e
8 changed files with 9 additions and 9 deletions

View File

@ -11,13 +11,11 @@ add_llvm_library(LLVMMC
MCCodeEmitter.cpp
MCCodeGenInfo.cpp
MCContext.cpp
MCDisassembler.cpp
MCDwarf.cpp
MCELF.cpp
MCELFObjectTargetWriter.cpp
MCELFStreamer.cpp
MCExpr.cpp
MCExternalSymbolizer.cpp
MCInst.cpp
MCInstPrinter.cpp
MCInstrAnalysis.cpp
@ -30,7 +28,6 @@ add_llvm_library(LLVMMC
MCObjectStreamer.cpp
MCObjectWriter.cpp
MCRegisterInfo.cpp
MCRelocationInfo.cpp
MCSection.cpp
MCSectionCOFF.cpp
MCSectionELF.cpp

View File

@ -1,3 +1,6 @@
add_llvm_library(LLVMMCDisassembler
Disassembler.cpp
MCRelocationInfo.cpp
MCExternalSymbolizer.cpp
MCDisassembler.cpp
)

View File

@ -1,4 +1,4 @@
//===-- lib/MC/MCDisassembler.cpp - Disassembler interface ------*- C++ -*-===//
//===-- MCDisassembler.cpp - Disassembler interface -----------------------===//
//
// The LLVM Compiler Infrastructure
//

View File

@ -1,4 +1,4 @@
//===-- lib/MC/MCExternalSymbolizer.cpp - External symbolizer ---*- C++ -*-===//
//===-- MCExternalSymbolizer.cpp - External symbolizer --------------------===//
//
// The LLVM Compiler Infrastructure
//

View File

@ -1,4 +1,4 @@
//==-- lib/MC/MCRelocationInfo.cpp -------------------------------*- C++ -*-==//
//==-- MCRelocationInfo.cpp ------------------------------------------------==//
//
// The LLVM Compiler Infrastructure
//

View File

@ -19,5 +19,5 @@
type = Library
name = AArch64Disassembler
parent = AArch64
required_libraries = AArch64Info AArch64Utils MC Support
required_libraries = AArch64Info AArch64Utils MCDisassembler Support
add_to_library_groups = AArch64

View File

@ -19,5 +19,5 @@
type = Library
name = X86Disassembler
parent = X86
required_libraries = MC Support X86Info
required_libraries = MCDisassembler Support X86Info
add_to_library_groups = X86

View File

@ -19,5 +19,5 @@
type = Library
name = X86Desc
parent = X86
required_libraries = MC Object Support X86AsmPrinter X86Info
required_libraries = MCDisassembler Object Support X86AsmPrinter X86Info
add_to_library_groups = X86