forked from OSchip/llvm-project
Rename the AsmPrinter directory to InstPrinter for those targets that have
been MC-ized for assembly printing. MSP430 is mostly so, but still has the asm printer and lowering code in the printer subdir for the moment. llvm-svn: 115360
This commit is contained in:
parent
d4ee8453a6
commit
0e854f3d43
|
@ -5050,6 +5050,11 @@ for target_to_build in $TARGETS_TO_BUILD; do
|
|||
if test -f ${srcdir}/lib/Target/${target_to_build}/AsmPrinter/Makefile ; then
|
||||
LLVM_ENUM_ASM_PRINTERS="LLVM_ASM_PRINTER($target_to_build) $LLVM_ENUM_ASM_PRINTERS";
|
||||
fi
|
||||
# MC-ized AsmPrinters live in TARGET/InstPrinter, not AsmPrinter
|
||||
if test -f ${srcdir}/lib/Target/${target_to_build}/InstPrinter/Makefile ; then
|
||||
LLVM_ENUM_ASM_PRINTERS="LLVM_ASM_PRINTER($target_to_build) $LLVM_ENUM_ASM_PRINTERS";
|
||||
fi
|
||||
|
||||
if test -f ${srcdir}/lib/Target/${target_to_build}/AsmParser/Makefile ; then
|
||||
LLVM_ENUM_ASM_PARSERS="LLVM_ASM_PARSER($target_to_build) $LLVM_ENUM_ASM_PARSERS";
|
||||
fi
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
#include "ARMBuildAttrs.h"
|
||||
#include "ARMAddressingModes.h"
|
||||
#include "ARMConstantPoolValue.h"
|
||||
#include "AsmPrinter/ARMInstPrinter.h"
|
||||
#include "InstPrinter/ARMInstPrinter.h"
|
||||
#include "ARMMachineFunctionInfo.h"
|
||||
#include "ARMMCInstLower.h"
|
||||
#include "ARMTargetMachine.h"
|
||||
|
|
|
@ -20,6 +20,6 @@ BUILT_SOURCES = ARMGenRegisterInfo.h.inc ARMGenRegisterNames.inc \
|
|||
ARMGenDecoderTables.inc ARMGenEDInfo.inc \
|
||||
ARMGenFastISel.inc
|
||||
|
||||
DIRS = AsmPrinter AsmParser Disassembler TargetInfo
|
||||
DIRS = InstPrinter AsmParser Disassembler TargetInfo
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
|
|
@ -20,6 +20,6 @@ BUILT_SOURCES = X86GenRegisterInfo.h.inc X86GenRegisterNames.inc \
|
|||
X86GenCallingConv.inc X86GenSubtarget.inc \
|
||||
X86GenEDInfo.inc
|
||||
|
||||
DIRS = AsmPrinter AsmParser Disassembler TargetInfo
|
||||
DIRS = InstPrinter AsmParser Disassembler TargetInfo
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
|
|
@ -13,8 +13,8 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "X86AsmPrinter.h"
|
||||
#include "AsmPrinter/X86ATTInstPrinter.h"
|
||||
#include "AsmPrinter/X86IntelInstPrinter.h"
|
||||
#include "InstPrinter/X86ATTInstPrinter.h"
|
||||
#include "InstPrinter/X86IntelInstPrinter.h"
|
||||
#include "X86MCInstLower.h"
|
||||
#include "X86.h"
|
||||
#include "X86COFFMachineModuleInfo.h"
|
||||
|
|
Loading…
Reference in New Issue