[llvm] 4c519c6 - [gn] port 375cc88b510150d (AMDGPU -gisel-extended-llt) (#209181)

via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 13 06:39:00 PDT 2026


Author: Nico Weber
Date: 2026-07-13T09:38:54-04:00
New Revision: 4c519c6e558a0cccf80c072ccf0822488968cbaf

URL: https://github.com/llvm/llvm-project/commit/4c519c6e558a0cccf80c072ccf0822488968cbaf
DIFF: https://github.com/llvm/llvm-project/commit/4c519c6e558a0cccf80c072ccf0822488968cbaf.diff

LOG: [gn] port 375cc88b510150d (AMDGPU -gisel-extended-llt) (#209181)

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/llvm/utils/gn/secondary/llvm/lib/Target/AMDGPU/BUILD.gn b/llvm/utils/gn/secondary/llvm/lib/Target/AMDGPU/BUILD.gn
index 0f55ac27fa797..7b19c38b0147f 100644
--- a/llvm/utils/gn/secondary/llvm/lib/Target/AMDGPU/BUILD.gn
+++ b/llvm/utils/gn/secondary/llvm/lib/Target/AMDGPU/BUILD.gn
@@ -20,7 +20,10 @@ tablegen("AMDGPUGenDAGISel") {
 
 tablegen("AMDGPUGenGlobalISel") {
   visibility = [ ":LLVMAMDGPUCodeGen" ]
-  args = [ "-gen-global-isel" ]
+  args = [
+    "-gen-global-isel",
+    "-gisel-extended-llt",
+  ]
   td_file = "AMDGPUGISel.td"
 }
 
@@ -29,6 +32,7 @@ tablegen("AMDGPUGenPreLegalizeGICombiner") {
   args = [
     "-gen-global-isel-combiner",
     "-combiners=AMDGPUPreLegalizerCombiner",
+    "-gisel-extended-llt",
   ]
   td_file = "AMDGPUGISel.td"
 }
@@ -38,6 +42,7 @@ tablegen("AMDGPUGenPostLegalizeGICombiner") {
   args = [
     "-gen-global-isel-combiner",
     "-combiners=AMDGPUPostLegalizerCombiner",
+    "-gisel-extended-llt",
   ]
   td_file = "AMDGPUGISel.td"
 }
@@ -47,6 +52,7 @@ tablegen("AMDGPUGenRegBankGICombiner") {
   args = [
     "-gen-global-isel-combiner",
     "-combiners=AMDGPURegBankCombiner",
+    "-gisel-extended-llt",
   ]
   td_file = "AMDGPUGISel.td"
 }


        


More information about the llvm-commits mailing list