From 264d435ee10c699b12562eea695793199ff757f5 Mon Sep 17 00:00:00 2001 From: Vitaly Buka Date: Wed, 3 Jun 2020 02:38:49 -0700 Subject: [PATCH] [NFC,StackSafety] Fix template arg name --- llvm/lib/Analysis/StackSafetyAnalysis.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/lib/Analysis/StackSafetyAnalysis.cpp b/llvm/lib/Analysis/StackSafetyAnalysis.cpp index 365adc7..d4689f5 100644 --- a/llvm/lib/Analysis/StackSafetyAnalysis.cpp +++ b/llvm/lib/Analysis/StackSafetyAnalysis.cpp @@ -534,8 +534,8 @@ void StackSafetyDataFlowAnalysis::runDataFlow() { } #ifndef NDEBUG -template -void StackSafetyDataFlowAnalysis::verifyFixedPoint() { +template +void StackSafetyDataFlowAnalysis::verifyFixedPoint() { WorkList.clear(); updateAllNodes(); assert(WorkList.empty()); -- 2.7.4