mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
[PM] Fix another place where I was using an overly generic T&& for the
IR unit to directly use IRUnitT& for now. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225750 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6e4bbf0390
commit
2b390f4dcf
@ -828,7 +828,7 @@ template <typename AnalysisT> struct InvalidateAnalysisPass {
|
||||
/// analysis passes to be re-run to produce fresh results if any are needed.
|
||||
struct InvalidateAllAnalysesPass {
|
||||
/// \brief Run this pass over some unit of IR.
|
||||
template <typename T> PreservedAnalyses run(T &&Arg) {
|
||||
template <typename IRUnitT> PreservedAnalyses run(IRUnitT &Arg) {
|
||||
return PreservedAnalyses::none();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user