1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

[VE] Move VEInstPrinter.cpp and VEInstPrinter.h into MCTargetDesc

Summary:
Move them into MCTargetDesc to follow other architectures (a263aa2).

Reviewed By: simoll

Differential Revision: https://reviews.llvm.org/D76270
This commit is contained in:
Kazushi (Jam) Marukawa 2020-03-17 11:32:33 +01:00 committed by Simon Moll
parent c352f2e253
commit 630424ca3a
11 changed files with 7 additions and 33 deletions

View File

@ -21,6 +21,5 @@ add_llvm_target(VECodeGen
VETargetMachine.cpp
)
add_subdirectory(InstPrinter)
add_subdirectory(TargetInfo)
add_subdirectory(MCTargetDesc)

View File

@ -1,3 +0,0 @@
add_llvm_component_library(LLVMVEAsmPrinter
VEInstPrinter.cpp
)

View File

@ -1,22 +0,0 @@
;===- ./lib/Target/VE/InstPrinter/LLVMBuild.txt ----------------*- Conf -*--===;
;
; Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
; See https://llvm.org/LICENSE.txt for license information.
; SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
;
;===------------------------------------------------------------------------===;
;
; This is an LLVMBuild description file for the components in this subdirectory.
;
; For more information on the LLVMBuild system, please see:
;
; http://llvm.org/docs/LLVMBuild.html
;
;===------------------------------------------------------------------------===;
[component_0]
type = Library
name = VEAsmPrinter
parent = VE
required_libraries = MC Support
add_to_library_groups = VE

View File

@ -15,7 +15,7 @@
;===------------------------------------------------------------------------===;
[common]
subdirectories = InstPrinter MCTargetDesc TargetInfo
subdirectories = MCTargetDesc TargetInfo
[component_0]
type = TargetGroup
@ -29,6 +29,5 @@ type = Library
name = VECodeGen
parent = VE
required_libraries = Analysis AsmPrinter CodeGen Core
MC SelectionDAG VEAsmPrinter
VEDesc VEInfo Support Target
MC SelectionDAG VEDesc VEInfo Support Target
add_to_library_groups = VE

View File

@ -1,4 +1,5 @@
add_llvm_component_library(LLVMVEDesc
VEInstPrinter.cpp
VEMCAsmInfo.cpp
VEMCExpr.cpp
VEMCTargetDesc.cpp

View File

@ -18,5 +18,5 @@
type = Library
name = VEDesc
parent = VE
required_libraries = MC VEAsmPrinter VEInfo Support
required_libraries = MC VEInfo Support
add_to_library_groups = VE

View File

@ -11,7 +11,7 @@
//===----------------------------------------------------------------------===//
#include "VEMCTargetDesc.h"
#include "InstPrinter/VEInstPrinter.h"
#include "VEInstPrinter.h"
#include "VEMCAsmInfo.h"
#include "VETargetStreamer.h"
#include "llvm/MC/MCInstrInfo.h"

View File

@ -11,7 +11,7 @@
//===----------------------------------------------------------------------===//
#include "VETargetStreamer.h"
#include "InstPrinter/VEInstPrinter.h"
#include "VEInstPrinter.h"
#include "llvm/Support/FormattedStream.h"
using namespace llvm;

View File

@ -11,7 +11,7 @@
//
//===----------------------------------------------------------------------===//
#include "InstPrinter/VEInstPrinter.h"
#include "MCTargetDesc/VEInstPrinter.h"
#include "MCTargetDesc/VEMCExpr.h"
#include "MCTargetDesc/VETargetStreamer.h"
#include "VE.h"