diff options
| author | Nico Weber <nicolasweber@gmx.de> | 2019-08-06 02:21:50 +0000 |
|---|---|---|
| committer | Nico Weber <nicolasweber@gmx.de> | 2019-08-06 02:21:50 +0000 |
| commit | 08fd65964f6df851b64171530dc2b8fc53cde816 (patch) | |
| tree | e9263c742bf5f29581fce711e6d81610d8a31115 | |
| parent | 139fb5d4785341bae9233c4d45ae58d7c7e857c1 (diff) | |
| download | bcm5719-llvm-08fd65964f6df851b64171530dc2b8fc53cde816.tar.gz bcm5719-llvm-08fd65964f6df851b64171530dc2b8fc53cde816.zip | |
gn build: Leave a comment why "-gen-searchable-table" tablegen()s are not called FooGenSearchableTable
llvm-svn: 367971
3 files changed, 3 insertions, 0 deletions
diff --git a/llvm/utils/gn/secondary/llvm/lib/Target/AArch64/Utils/BUILD.gn b/llvm/utils/gn/secondary/llvm/lib/Target/AArch64/Utils/BUILD.gn index aef50a013bd..c680c769ad2 100644 --- a/llvm/utils/gn/secondary/llvm/lib/Target/AArch64/Utils/BUILD.gn +++ b/llvm/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/llvm/utils/gn/secondary/llvm/lib/Target/ARM/Utils/BUILD.gn b/llvm/utils/gn/secondary/llvm/lib/Target/ARM/Utils/BUILD.gn index 5303a32fe75..fc541fa026f 100644 --- a/llvm/utils/gn/secondary/llvm/lib/Target/ARM/Utils/BUILD.gn +++ b/llvm/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/llvm/utils/gn/secondary/llvm/lib/Target/RISCV/Utils/BUILD.gn b/llvm/utils/gn/secondary/llvm/lib/Target/RISCV/Utils/BUILD.gn index 66924bed532..6ae0d7869dd 100644 --- a/llvm/utils/gn/secondary/llvm/lib/Target/RISCV/Utils/BUILD.gn +++ b/llvm/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" ] |

