r214183 - DataflowWorklist.h - "We should have a description here of what this code does, not just where it's used."

Artyom Skrobov Artyom.Skrobov at arm.com
Tue Jul 29 09:10:25 PDT 2014


Author: askrobov
Date: Tue Jul 29 11:10:25 2014
New Revision: 214183

URL: http://llvm.org/viewvc/llvm-project?rev=214183&view=rev
Log:
DataflowWorklist.h - "We should have a description here of what this code does, not just where it's used."

Modified:
    cfe/trunk/include/clang/Analysis/Analyses/DataflowWorklist.h

Modified: cfe/trunk/include/clang/Analysis/Analyses/DataflowWorklist.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Analysis/Analyses/DataflowWorklist.h?rev=214183&r1=214182&r2=214183&view=diff
==============================================================================
--- cfe/trunk/include/clang/Analysis/Analyses/DataflowWorklist.h (original)
+++ cfe/trunk/include/clang/Analysis/Analyses/DataflowWorklist.h Tue Jul 29 11:10:25 2014
@@ -7,7 +7,10 @@
 //
 //===----------------------------------------------------------------------===//
 //
-// DataflowWorklist is used in LiveVariables and UninitializedValues analyses
+// DataflowWorklist keeps track of blocks for dataflow analysis. It maintains a
+// vector of blocks for priority processing, and falls back upon a reverse
+// post-order iterator. It supports both forward (used in UninitializedValues)
+// and reverse (used in LiveVariables) analyses.
 //
 //===----------------------------------------------------------------------===//
 





More information about the cfe-commits mailing list