1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 12:12:47 +01:00

move PPCAsmPrinter into the main PPC library, like ARM and X86.

llvm-svn: 119054
This commit is contained in:
Chris Lattner 2010-11-14 18:33:33 +00:00
parent 7e03d38bd7
commit 38ca2c6f0f
5 changed files with 2 additions and 22 deletions

View File

@ -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)

View File

@ -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

View File

@ -12,6 +12,7 @@ tablegen(PPCGenCallingConv.inc -gen-callingconv)
tablegen(PPCGenSubtarget.inc -gen-subtarget)
add_llvm_target(PowerPCCodeGen
PPCAsmPrinter.cpp
PPCBranchSelector.cpp
PPCCodeEmitter.cpp
PPCHazardRecognizers.cpp

View File

@ -18,6 +18,6 @@ BUILT_SOURCES = PPCGenInstrNames.inc PPCGenRegisterNames.inc \
PPCGenInstrInfo.inc PPCGenDAGISel.inc \
PPCGenSubtarget.inc PPCGenCallingConv.inc
DIRS = AsmPrinter TargetInfo
DIRS = TargetInfo
include $(LEVEL)/Makefile.common