r324050 - Remove the change which accidentally crept in into the cherry-pick

George Karpenkov via cfe-commits cfe-commits at lists.llvm.org
Thu Feb 1 18:14:33 PST 2018


Author: george.karpenkov
Date: Thu Feb  1 18:14:33 2018
New Revision: 324050

URL: http://llvm.org/viewvc/llvm-project?rev=324050&view=rev
Log:
Remove the change which accidentally crept in into the cherry-pick

Modified:
    cfe/trunk/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp

Modified: cfe/trunk/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp?rev=324050&r1=324049&r2=324050&view=diff
==============================================================================
--- cfe/trunk/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp (original)
+++ cfe/trunk/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp Thu Feb  1 18:14:33 2018
@@ -63,7 +63,6 @@ AnalyzerOptions::getExplorationStrategy(
     ExplorationStrategy = llvm::StringSwitch<ExplorationStrategyKind>(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




More information about the cfe-commits mailing list