Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Unified Diff: src/IceLiveness.cpp

Issue 1488913002: fix doxygen brief in subzero header files (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Make changes suggested by stichnot. Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/IceLiveness.h ('k') | src/IceLoopAnalyzer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceLiveness.cpp
diff --git a/src/IceLiveness.cpp b/src/IceLiveness.cpp
index 25cfd09d70d6868c3ce45cf4202bd895deedd5b5..2bfa624d57cf03f5c3855648871e9b30291a7e7f 100644
--- a/src/IceLiveness.cpp
+++ b/src/IceLiveness.cpp
@@ -8,14 +8,15 @@
//===----------------------------------------------------------------------===//
///
/// \file
-/// This file provides some of the support for the Liveness class. In
-/// particular, it handles the sparsity representation of the mapping between
-/// Variables and CfgNodes. The idea is that since most variables are used only
-/// within a single basic block, we can partition the variables into "local" and
-/// "global" sets. Instead of sizing and indexing vectors according to
-/// Variable::Number, we create a mapping such that global variables are mapped
-/// to low indexes that are common across nodes, and local variables are mapped
-/// to a higher index space that is shared across nodes.
+/// \brief Provides some of the support for the Liveness class.
+
+/// In particular, it handles the sparsity representation of the mapping
+/// between Variables and CfgNodes. The idea is that since most variables are
+/// used only within a single basic block, we can partition the variables into
+/// "local" and "global" sets. Instead of sizing and indexing vectors according
+/// to Variable::Number, we create a mapping such that global variables are
+/// mapped to low indexes that are common across nodes, and local variables are
+/// mapped to a higher index space that is shared across nodes.
///
//===----------------------------------------------------------------------===//
« no previous file with comments | « src/IceLiveness.h ('k') | src/IceLoopAnalyzer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698