forked from OSchip/llvm-project
parent
4ffc43bce0
commit
3b960aca17
|
@ -61,5 +61,6 @@ add_llvm_target(X86CodeGen ${sources})
|
|||
add_subdirectory(AsmParser)
|
||||
add_subdirectory(Disassembler)
|
||||
add_subdirectory(InstPrinter)
|
||||
add_subdirectory(MCTargetDesc)
|
||||
add_subdirectory(TargetInfo)
|
||||
add_subdirectory(Utils)
|
||||
|
|
|
@ -21,6 +21,6 @@ BUILT_SOURCES = X86GenRegisterNames.inc X86GenRegisterDesc.inc \
|
|||
X86GenCallingConv.inc X86GenSubtarget.inc \
|
||||
X86GenEDInfo.inc
|
||||
|
||||
DIRS = InstPrinter AsmParser Disassembler TargetInfo TargetDesc Utils
|
||||
DIRS = InstPrinter AsmParser Disassembler TargetInfo MCTargetDesc Utils
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
|
|
@ -84,11 +84,9 @@ MCObjectWriter *createX86MachObjectWriter(raw_ostream &OS,
|
|||
uint32_t CPUType,
|
||||
uint32_t CPUSubtype);
|
||||
|
||||
extern Target TheX86_32Target, TheX86_64Target;
|
||||
|
||||
} // End llvm namespace
|
||||
|
||||
#include "TargetDesc/X86TargetDesc.h"
|
||||
#include "MCTargetDesc/X86TargetDesc.h"
|
||||
|
||||
// Defines symbolic names for the X86 instructions.
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue