[llvm] 96196e2 - [GlobalISel] Remove unused declaration tryCombineIndexedLoadStore

Kazu Hirata via llvm-commits llvm-commits at lists.llvm.org
Sun Oct 15 13:20:59 PDT 2023


Author: Kazu Hirata
Date: 2023-10-15T13:20:48-07:00
New Revision: 96196e25fd49e3d0ecec9550e81365ce122679cb

URL: https://github.com/llvm/llvm-project/commit/96196e25fd49e3d0ecec9550e81365ce122679cb
DIFF: https://github.com/llvm/llvm-project/commit/96196e25fd49e3d0ecec9550e81365ce122679cb.diff

LOG: [GlobalISel] Remove unused declaration tryCombineIndexedLoadStore

The corresponding function definition was removed by:

  commit 7e5c2672cb4ef5a607414023805b8040b8e1fa99
  Author: Amara Emerson <amara at apple.com>
  Date:   Mon Sep 25 03:22:25 2023 +0800

Added: 
    

Modified: 
    llvm/include/llvm/CodeGen/GlobalISel/CombinerHelper.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/CodeGen/GlobalISel/CombinerHelper.h b/llvm/include/llvm/CodeGen/GlobalISel/CombinerHelper.h
index 30b04930dfb96e6..d64b414f2747621 100644
--- a/llvm/include/llvm/CodeGen/GlobalISel/CombinerHelper.h
+++ b/llvm/include/llvm/CodeGen/GlobalISel/CombinerHelper.h
@@ -194,9 +194,6 @@ class CombinerHelper {
   /// Match (and (load x), mask) -> zextload x
   bool matchCombineLoadWithAndMask(MachineInstr &MI, BuildFnTy &MatchInfo);
 
-  /// Combine \p MI into a pre-indexed or post-indexed load/store operation if
-  /// legal and the surrounding code makes it useful.
-  bool tryCombineIndexedLoadStore(MachineInstr &MI);
   bool matchCombineIndexedLoadStore(MachineInstr &MI, IndexedLoadStoreMatchInfo &MatchInfo);
   void applyCombineIndexedLoadStore(MachineInstr &MI, IndexedLoadStoreMatchInfo &MatchInfo);
 


        


More information about the llvm-commits mailing list