1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Reland "gn build: (manually) merge r373551"

373551 relanded in 373651.

llvm-svn: 373654
This commit is contained in:
Nico Weber 2019-10-03 20:07:03 +00:00
parent 2ee13eebfa
commit ddba9942be
4 changed files with 23 additions and 0 deletions

View File

@ -34,6 +34,7 @@ group("unittests") {
"Remarks:RemarksTests",
"Support:SupportTests",
"Support/DynamicLibrary:DynamicLibraryTests",
"TableGen:TableGenTests",
"TextAPI:TextAPITests",
"Transforms/IPO:IPOTests",
"Transforms/Scalar:ScalarTests",

View File

@ -0,0 +1,13 @@
import("//llvm/utils/unittest/unittest.gni")
unittest("TableGenTests") {
deps = [
"//llvm/lib/Support",
"//llvm/lib/TableGen",
"//llvm/utils/TableGen/GlobalISel",
]
include_dirs = [ "//llvm/utils/TableGen" ]
sources = [
"CodeExpanderTest.cpp",
]
}

View File

@ -4,6 +4,7 @@ executable("llvm-tblgen") {
"//llvm/lib/MC",
"//llvm/lib/Support",
"//llvm/lib/TableGen",
"//llvm/utils/TableGen/GlobalISel",
]
sources = [
"AsmMatcherEmitter.cpp",

View File

@ -0,0 +1,8 @@
source_set("GlobalISel") {
deps = [
"//llvm/lib/Support",
]
sources = [
"CodeExpander.cpp",
]
}