[MIParser] Set RegClassOrRegBank during instruction parsing
[llvm-complete.git] / utils / gn / secondary / llvm / tools / llvm-exegesis / lib / X86 / BUILD.gn
bloba1cb577b7961e21198a2f6daaea40800ad417c50
1 import("//llvm/utils/TableGen/tablegen.gni")
3 tablegen("X86GenExegesis") {
4   args = [ "-gen-exegesis" ]
5   td_file = "//llvm/lib/Target/X86/X86.td"
8 static_library("X86") {
9   output_name = "LLVMExegesisX86"
10   deps = [
11     ":X86GenExegesis",
13     # Exegesis reaches inside the Target/X86 tablegen internals and must
14     # depend on this Target/X86-internal build target.
15     "//llvm/lib/Target/X86/MCTargetDesc",
16   ]
17   sources = [
18     "Target.cpp",
19   ]
20   include_dirs = [ "//llvm/lib/Target/X86" ]