From: Nico Weber Date: Tue, 6 Aug 2019 02:21:50 +0000 (+0000) Subject: gn build: Leave a comment why "-gen-searchable-table" tablegen()s are not called... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=396a25afc1e7e710aa0e6289f5266aac1b86855a;p=llvm gn build: Leave a comment why "-gen-searchable-table" tablegen()s are not called FooGenSearchableTable git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@367971 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/gn/secondary/llvm/lib/Target/AArch64/Utils/BUILD.gn b/utils/gn/secondary/llvm/lib/Target/AArch64/Utils/BUILD.gn index aef50a013bd..c680c769ad2 100644 --- a/utils/gn/secondary/llvm/lib/Target/AArch64/Utils/BUILD.gn +++ b/utils/gn/secondary/llvm/lib/Target/AArch64/Utils/BUILD.gn @@ -1,5 +1,6 @@ import("//llvm/utils/TableGen/tablegen.gni") +# Generates AArch64GenSystemOperands.inc tablegen("AArch64GenSystemOperands") { visibility = [ ":Utils" ] args = [ "-gen-searchable-tables" ] diff --git a/utils/gn/secondary/llvm/lib/Target/ARM/Utils/BUILD.gn b/utils/gn/secondary/llvm/lib/Target/ARM/Utils/BUILD.gn index 5303a32fe75..fc541fa026f 100644 --- a/utils/gn/secondary/llvm/lib/Target/ARM/Utils/BUILD.gn +++ b/utils/gn/secondary/llvm/lib/Target/ARM/Utils/BUILD.gn @@ -1,5 +1,6 @@ import("//llvm/utils/TableGen/tablegen.gni") +# Generates ARMGenSystemRegister.inc tablegen("ARMGenSystemRegister") { visibility = [ ":Utils" ] args = [ "-gen-searchable-tables" ] diff --git a/utils/gn/secondary/llvm/lib/Target/RISCV/Utils/BUILD.gn b/utils/gn/secondary/llvm/lib/Target/RISCV/Utils/BUILD.gn index 66924bed532..6ae0d7869dd 100644 --- a/utils/gn/secondary/llvm/lib/Target/RISCV/Utils/BUILD.gn +++ b/utils/gn/secondary/llvm/lib/Target/RISCV/Utils/BUILD.gn @@ -1,5 +1,6 @@ import("//llvm/utils/TableGen/tablegen.gni") +# Generates RISCVGenSystemOperands.inc tablegen("RISCVGenSystemOperands") { visibility = [ ":Utils" ] args = [ "-gen-searchable-tables" ]