forked from OSchip/llvm-project
move PPCAsmPrinter into the main PPC library, like ARM and X86.
llvm-svn: 119054
This commit is contained in:
parent
dab307c6f4
commit
56477d1690
|
@ -1,6 +0,0 @@
|
||||||
include_directories( ${CMAKE_CURRENT_BINARY_DIR}/.. ${CMAKE_CURRENT_SOURCE_DIR}/.. )
|
|
||||||
|
|
||||||
add_llvm_library(LLVMPowerPCAsmPrinter
|
|
||||||
PPCAsmPrinter.cpp
|
|
||||||
)
|
|
||||||
add_dependencies(LLVMPowerPCAsmPrinter PowerPCCodeGenTable_gen)
|
|
|
@ -1,15 +0,0 @@
|
||||||
##===- lib/Target/PowerPC/AsmPrinter/Makefile --------------*- Makefile -*-===##
|
|
||||||
#
|
|
||||||
# The LLVM Compiler Infrastructure
|
|
||||||
#
|
|
||||||
# This file is distributed under the University of Illinois Open Source
|
|
||||||
# License. See LICENSE.TXT for details.
|
|
||||||
#
|
|
||||||
##===----------------------------------------------------------------------===##
|
|
||||||
LEVEL = ../../../..
|
|
||||||
LIBRARYNAME = LLVMPowerPCAsmPrinter
|
|
||||||
|
|
||||||
# Hack: we need to include 'main' PowerPC target directory to grab private headers
|
|
||||||
CPP.Flags += -I$(PROJ_OBJ_DIR)/.. -I$(PROJ_SRC_DIR)/..
|
|
||||||
|
|
||||||
include $(LEVEL)/Makefile.common
|
|
|
@ -12,6 +12,7 @@ tablegen(PPCGenCallingConv.inc -gen-callingconv)
|
||||||
tablegen(PPCGenSubtarget.inc -gen-subtarget)
|
tablegen(PPCGenSubtarget.inc -gen-subtarget)
|
||||||
|
|
||||||
add_llvm_target(PowerPCCodeGen
|
add_llvm_target(PowerPCCodeGen
|
||||||
|
PPCAsmPrinter.cpp
|
||||||
PPCBranchSelector.cpp
|
PPCBranchSelector.cpp
|
||||||
PPCCodeEmitter.cpp
|
PPCCodeEmitter.cpp
|
||||||
PPCHazardRecognizers.cpp
|
PPCHazardRecognizers.cpp
|
||||||
|
|
|
@ -18,6 +18,6 @@ BUILT_SOURCES = PPCGenInstrNames.inc PPCGenRegisterNames.inc \
|
||||||
PPCGenInstrInfo.inc PPCGenDAGISel.inc \
|
PPCGenInstrInfo.inc PPCGenDAGISel.inc \
|
||||||
PPCGenSubtarget.inc PPCGenCallingConv.inc
|
PPCGenSubtarget.inc PPCGenCallingConv.inc
|
||||||
|
|
||||||
DIRS = AsmPrinter TargetInfo
|
DIRS = TargetInfo
|
||||||
|
|
||||||
include $(LEVEL)/Makefile.common
|
include $(LEVEL)/Makefile.common
|
||||||
|
|
Loading…
Reference in New Issue