[llvm] 55054db - [Unifomity] Remove unused PhiInput definition (NFC) (#161116)

via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 30 01:42:54 PDT 2025


Author: Carl Ritson
Date: 2025-09-30T17:42:50+09:00
New Revision: 55054db762af3a177b89487a0c6aebf3efec5786

URL: https://github.com/llvm/llvm-project/commit/55054db762af3a177b89487a0c6aebf3efec5786
DIFF: https://github.com/llvm/llvm-project/commit/55054db762af3a177b89487a0c6aebf3efec5786.diff

LOG: [Unifomity] Remove unused PhiInput definition (NFC) (#161116)

This appears to have no users.

Added: 
    

Modified: 
    llvm/include/llvm/ADT/GenericUniformityImpl.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/ADT/GenericUniformityImpl.h b/llvm/include/llvm/ADT/GenericUniformityImpl.h
index 141816c304397..7fb0dbe22f12f 100644
--- a/llvm/include/llvm/ADT/GenericUniformityImpl.h
+++ b/llvm/include/llvm/ADT/GenericUniformityImpl.h
@@ -408,15 +408,6 @@ template <typename ContextT> class GenericUniformityAnalysisImpl {
                                 const CycleT *);
 
 protected:
-  /// \brief Value/block pair representing a single phi input.
-  struct PhiInput {
-    ConstValueRefT value;
-    BlockT *predBlock;
-
-    PhiInput(ConstValueRefT value, BlockT *predBlock)
-        : value(value), predBlock(predBlock) {}
-  };
-
   const ContextT &Context;
   const FunctionT &F;
   const CycleInfoT &CI;


        


More information about the llvm-commits mailing list