[llvm] r353691 - [AMDGPU] Enable DPP combiner pass by default.

Valery Pykhtin via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 11 03:15:03 PST 2019


Author: vpykhtin
Date: Mon Feb 11 03:15:03 2019
New Revision: 353691

URL: http://llvm.org/viewvc/llvm-project?rev=353691&view=rev
Log:
[AMDGPU] Enable DPP combiner pass by default.

Related revisions: https://reviews.llvm.org/D55444, https://reviews.llvm.org/D55314

Modified:
    llvm/trunk/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp

Modified: llvm/trunk/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp?rev=353691&r1=353690&r2=353691&view=diff
==============================================================================
--- llvm/trunk/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp (original)
+++ llvm/trunk/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp Mon Feb 11 03:15:03 2019
@@ -108,7 +108,7 @@ static cl::opt<bool> EnableSDWAPeephole(
 static cl::opt<bool> EnableDPPCombine(
   "amdgpu-dpp-combine",
   cl::desc("Enable DPP combiner"),
-  cl::init(false));
+  cl::init(true));
 
 // Enable address space based alias analysis
 static cl::opt<bool> EnableAMDGPUAliasAnalysis("enable-amdgpu-aa", cl::Hidden,




More information about the llvm-commits mailing list