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

Unified Diff: src/IceConverter.h

Issue 1216963007: Doxygenize the documentation comments (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 6 months 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
Index: src/IceConverter.h
diff --git a/src/IceConverter.h b/src/IceConverter.h
index 84389d3b653f3848191099d284b776a53612acd2..aca353b4bc14e4a1165cbd047318ae6c81c399c2 100644
--- a/src/IceConverter.h
+++ b/src/IceConverter.h
@@ -41,8 +41,8 @@ public:
llvm::Module *getModule() const { return Mod; }
- // Returns the global declaration associated with the corresponding
- // global value V. If no such global address, generates fatal error.
+ /// Returns the global declaration associated with the corresponding
+ /// global value V. If no such global address, generates fatal error.
GlobalDeclaration *getGlobalDeclaration(const llvm::GlobalValue *V);
private:
@@ -51,22 +51,22 @@ private:
GlobalDeclarationMapType;
GlobalDeclarationMapType GlobalDeclarationMap;
- // Walks module and generates names for unnamed globals using prefix
- // getFlags().DefaultGlobalPrefix, if the prefix is non-empty.
+ /// Walks module and generates names for unnamed globals using prefix
+ /// getFlags().DefaultGlobalPrefix, if the prefix is non-empty.
void nameUnnamedGlobalVariables(llvm::Module *Mod);
- // Walks module and generates names for unnamed functions using
- // prefix getFlags().DefaultFunctionPrefix, if the prefix is
- // non-empty.
+ /// Walks module and generates names for unnamed functions using
+ /// prefix getFlags().DefaultFunctionPrefix, if the prefix is
+ /// non-empty.
void nameUnnamedFunctions(llvm::Module *Mod);
- // Converts functions to ICE, and then machine code.
+ /// Converts functions to ICE, and then machine code.
void convertFunctions();
- // Converts globals to ICE, and then machine code.
+ /// Converts globals to ICE, and then machine code.
void convertGlobals(llvm::Module *Mod);
- // Installs global declarations into GlobalDeclarationMap.
+ /// Installs global declarations into GlobalDeclarationMap.
void installGlobalDeclarations(llvm::Module *Mod);
};

Powered by Google App Engine
This is Rietveld 408576698