[PATCH] D159321: [GlobalISel] GISelKnownBits: forward unused depth parameter

Tobias Stadler via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 12 15:39:56 PDT 2023


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG721b3d0a0220: [GlobalISel] GISelKnownBits: forward unused depth parameter (authored by tobias-stadler).

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D159321

Files:
  llvm/lib/CodeGen/GlobalISel/GISelKnownBits.cpp


Index: llvm/lib/CodeGen/GlobalISel/GISelKnownBits.cpp
===================================================================
--- llvm/lib/CodeGen/GlobalISel/GISelKnownBits.cpp
+++ llvm/lib/CodeGen/GlobalISel/GISelKnownBits.cpp
@@ -74,7 +74,7 @@
   assert(ComputeKnownBitsCache.empty() && "Cache should have been cleared");
 
   KnownBits Known;
-  computeKnownBitsImpl(R, Known, DemandedElts);
+  computeKnownBitsImpl(R, Known, DemandedElts, Depth);
   ComputeKnownBitsCache.clear();
   return Known;
 }


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D159321.556615.patch
Type: text/x-patch
Size: 501 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230912/c012d312/attachment.bin>


More information about the llvm-commits mailing list