[PATCH] D148198: [ReachingDefs] make ReachingDefDefaultVal smaller

Bing Yu via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 13 01:20:03 PDT 2023


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG674d3d7accee: [ReachingDefs] make ReachingDefDefaultVal smaller (authored by yubing).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D148198/new/

https://reviews.llvm.org/D148198

Files:
  llvm/include/llvm/CodeGen/ReachingDefAnalysis.h


Index: llvm/include/llvm/CodeGen/ReachingDefAnalysis.h
===================================================================
--- llvm/include/llvm/CodeGen/ReachingDefAnalysis.h
+++ llvm/include/llvm/CodeGen/ReachingDefAnalysis.h
@@ -102,7 +102,7 @@
   MBBReachingDefsInfo MBBReachingDefs;
 
   /// Default values are 'nothing happened a long time ago'.
-  const int ReachingDefDefaultVal = -(1 << 20);
+  const int ReachingDefDefaultVal = -(1 << 21);
 
   using InstSet = SmallPtrSetImpl<MachineInstr*>;
   using BlockSet = SmallPtrSetImpl<MachineBasicBlock*>;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D148198.513099.patch
Type: text/x-patch
Size: 559 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230413/b2436291/attachment.bin>


More information about the llvm-commits mailing list