forked from OSchip/llvm-project
[gn bulid] Remove phantom WebAssembly tablegen() calls
Apparenlty I added these in https://reviews.llvm.org/rL350628 but I'm not sure why. They never existed in the CMake build, and now they're causing trouble.
This commit is contained in:
parent
2e794a46b5
commit
6601dfb0b8
|
@ -1,11 +1,5 @@
|
||||||
import("//llvm/utils/TableGen/tablegen.gni")
|
import("//llvm/utils/TableGen/tablegen.gni")
|
||||||
|
|
||||||
tablegen("WebAssemblyGenCallingConv") {
|
|
||||||
visibility = [ ":LLVMWebAssemblyCodeGen" ]
|
|
||||||
args = [ "-gen-callingconv" ]
|
|
||||||
td_file = "WebAssembly.td"
|
|
||||||
}
|
|
||||||
|
|
||||||
tablegen("WebAssemblyGenDAGISel") {
|
tablegen("WebAssemblyGenDAGISel") {
|
||||||
visibility = [ ":LLVMWebAssemblyCodeGen" ]
|
visibility = [ ":LLVMWebAssemblyCodeGen" ]
|
||||||
args = [ "-gen-dag-isel" ]
|
args = [ "-gen-dag-isel" ]
|
||||||
|
@ -18,32 +12,10 @@ tablegen("WebAssemblyGenFastISel") {
|
||||||
td_file = "WebAssembly.td"
|
td_file = "WebAssembly.td"
|
||||||
}
|
}
|
||||||
|
|
||||||
tablegen("WebAssemblyGenGlobalISel") {
|
|
||||||
visibility = [ ":LLVMWebAssemblyCodeGen" ]
|
|
||||||
args = [ "-gen-global-isel" ]
|
|
||||||
td_file = "WebAssembly.td"
|
|
||||||
}
|
|
||||||
|
|
||||||
tablegen("WebAssemblyGenMCPseudoLowering") {
|
|
||||||
visibility = [ ":LLVMWebAssemblyCodeGen" ]
|
|
||||||
args = [ "-gen-pseudo-lowering" ]
|
|
||||||
td_file = "WebAssembly.td"
|
|
||||||
}
|
|
||||||
|
|
||||||
tablegen("WebAssemblyGenRegisterBank") {
|
|
||||||
visibility = [ ":LLVMWebAssemblyCodeGen" ]
|
|
||||||
args = [ "-gen-register-bank" ]
|
|
||||||
td_file = "WebAssembly.td"
|
|
||||||
}
|
|
||||||
|
|
||||||
static_library("LLVMWebAssemblyCodeGen") {
|
static_library("LLVMWebAssemblyCodeGen") {
|
||||||
deps = [
|
deps = [
|
||||||
":WebAssemblyGenCallingConv",
|
|
||||||
":WebAssemblyGenDAGISel",
|
":WebAssemblyGenDAGISel",
|
||||||
":WebAssemblyGenFastISel",
|
":WebAssemblyGenFastISel",
|
||||||
":WebAssemblyGenGlobalISel",
|
|
||||||
":WebAssemblyGenMCPseudoLowering",
|
|
||||||
":WebAssemblyGenRegisterBank",
|
|
||||||
"MCTargetDesc",
|
"MCTargetDesc",
|
||||||
"TargetInfo",
|
"TargetInfo",
|
||||||
"//llvm/include/llvm/Config:llvm-config",
|
"//llvm/include/llvm/Config:llvm-config",
|
||||||
|
|
Loading…
Reference in New Issue