From: George Karpenkov Date: Fri, 2 Feb 2018 02:14:33 +0000 (+0000) Subject: Remove the change which accidentally crept in into the cherry-pick X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2794a6b57007336f5178ccce6cb06ad60093c919;p=clang Remove the change which accidentally crept in into the cherry-pick git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@324050 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp b/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp index 372cb2db06..ca05e38608 100644 --- a/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp +++ b/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp @@ -63,7 +63,6 @@ AnalyzerOptions::getExplorationStrategy() { ExplorationStrategy = llvm::StringSwitch(StratStr) .Case("dfs", ExplorationStrategyKind::DFS) .Case("bfs", ExplorationStrategyKind::BFS) - .Case("loopstack_priority", ExplorationStrategyKind::LoopstackPriority) .Case("bfs_block_dfs_contents", ExplorationStrategyKind::BFSBlockDFSContents) .Default(ExplorationStrategyKind::NotSet); assert(ExplorationStrategy != ExplorationStrategyKind::NotSet