[llvm] 26b15b7 - [gn] port 43dacd07f660064 (ppc SDNodeInfo)

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


Author: Nico Weber
Date: 2025-11-17T19:05:18-05:00
New Revision: 26b15b761462da1ca26516310af91325ece070c1

URL: https://github.com/llvm/llvm-project/commit/26b15b761462da1ca26516310af91325ece070c1
DIFF: https://github.com/llvm/llvm-project/commit/26b15b761462da1ca26516310af91325ece070c1.diff

LOG: [gn] port 43dacd07f660064 (ppc SDNodeInfo)

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/llvm/utils/gn/secondary/llvm/lib/Target/PowerPC/BUILD.gn b/llvm/utils/gn/secondary/llvm/lib/Target/PowerPC/BUILD.gn
index 2bce96859f8bc..c368cfe46405e 100644
--- a/llvm/utils/gn/secondary/llvm/lib/Target/PowerPC/BUILD.gn
+++ b/llvm/utils/gn/secondary/llvm/lib/Target/PowerPC/BUILD.gn
@@ -30,6 +30,12 @@ tablegen("PPCGenRegisterBank") {
   td_file = "PPC.td"
 }
 
+tablegen("PPCGenSDNodeInfo") {
+  visibility = [ ":LLVMPowerPCCodeGen" ]
+  args = [ "-gen-sd-node-info" ]
+  td_file = "PPC.td"
+}
+
 static_library("LLVMPowerPCCodeGen") {
   deps = [
     ":PPCGenCallingConv",
@@ -37,6 +43,7 @@ static_library("LLVMPowerPCCodeGen") {
     ":PPCGenFastISel",
     ":PPCGenGlobalISel",
     ":PPCGenRegisterBank",
+    ":PPCGenSDNodeInfo",
     "AsmParser:PPCGenAsmMatcher",
     "MCTargetDesc",
     "TargetInfo",


        


More information about the llvm-commits mailing list