[llvm] 2c4bce4 - [gn] port 320c18a066b29 (systemz SDNodeInfo)

Nico Weber via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 17 16:11:28 PST 2025


Author: Nico Weber
Date: 2025-11-17T19:11:15-05:00
New Revision: 2c4bce4048c55aede9eb927a41d5be3283f0f33d

URL: https://github.com/llvm/llvm-project/commit/2c4bce4048c55aede9eb927a41d5be3283f0f33d
DIFF: https://github.com/llvm/llvm-project/commit/2c4bce4048c55aede9eb927a41d5be3283f0f33d.diff

LOG: [gn] port 320c18a066b29 (systemz SDNodeInfo)

Added: 
    

Modified: 
    llvm/utils/gn/secondary/llvm/lib/Target/SystemZ/BUILD.gn

Removed: 
    


################################################################################
diff  --git a/llvm/utils/gn/secondary/llvm/lib/Target/SystemZ/BUILD.gn b/llvm/utils/gn/secondary/llvm/lib/Target/SystemZ/BUILD.gn
index a5718e0c48feb..f360b01274705 100644
--- a/llvm/utils/gn/secondary/llvm/lib/Target/SystemZ/BUILD.gn
+++ b/llvm/utils/gn/secondary/llvm/lib/Target/SystemZ/BUILD.gn
@@ -12,10 +12,17 @@ tablegen("SystemZGenDAGISel") {
   td_file = "SystemZ.td"
 }
 
+tablegen("SystemZGenSDNodeInfo") {
+  visibility = [ ":LLVMSystemZCodeGen" ]
+  args = [ "-gen-sd-node-info" ]
+  td_file = "SystemZ.td"
+}
+
 static_library("LLVMSystemZCodeGen") {
   deps = [
     ":SystemZGenCallingConv",
     ":SystemZGenDAGISel",
+    ":SystemZGenSDNodeInfo",
     "MCTargetDesc",
     "TargetInfo",
     "//llvm/include/llvm/Config:llvm-config",


        


More information about the llvm-commits mailing list