[PATCH] D145032: [Codegen][NFC] Replace 'RegisterRegAlloc::FunctionPassCtor' with 'RegisterRegAllocBase<T>::FunctionPassCtor' .

WangLian via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 9 18:31:52 PST 2023


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG7c2a3573b696: [Codegen][NFC] Replace 'RegisterRegAlloc::FunctionPassCtor' (authored by Jimerlife).

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D145032

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


Index: llvm/include/llvm/CodeGen/RegAllocRegistry.h
===================================================================
--- llvm/include/llvm/CodeGen/RegAllocRegistry.h
+++ llvm/include/llvm/CodeGen/RegAllocRegistry.h
@@ -66,7 +66,7 @@
 
 /// RegisterRegAlloc's global Registry tracks allocator registration.
 template <class T>
-MachinePassRegistry<RegisterRegAlloc::FunctionPassCtor>
+MachinePassRegistry<typename RegisterRegAllocBase<T>::FunctionPassCtor>
 RegisterRegAllocBase<T>::Registry;
 
 } // end namespace llvm


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D145032.504000.patch
Type: text/x-patch
Size: 522 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230310/2b7b11b9/attachment-0001.bin>


More information about the llvm-commits mailing list