[llvm] [NFC] Change FindDbgDeclareUsers interface to match findDbgUsers/values (PR #73498)
Orlando Cazalet-Hyams via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 12 01:51:14 PST 2023
================
@@ -40,7 +40,7 @@ class Module;
/// Finds dbg.declare intrinsics declaring local variables as living in the
/// memory that 'V' points to.
-TinyPtrVector<DbgDeclareInst *> FindDbgDeclareUses(Value *V);
+void findDbgDeclares(SmallVectorImpl<DbgDeclareInst *> &DbgUsers, Value *V);
----------------
OCHyams wrote:
You may well already be aware, but just in case it helps - If you go to to to `Notifications` (top right, second icon from the right), you can click the "Review Requested" option. I don't know if this shows you pull requests where you've commented but are not a reviewer though... I guess they probably just float around in the notification inbox.
https://github.com/llvm/llvm-project/pull/73498
More information about the llvm-commits
mailing list