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

Unified Diff: src/IceRevision.h

Issue 2218363002: Subzero: Embed the revision string into translated output. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Insert new global in GlobalContext ctor. Created 4 years, 4 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
« no previous file with comments | « src/IceGlobalContext.cpp ('k') | src/IceRevision.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceRevision.h
diff --git a/src/IceRevision.h b/src/IceRevision.h
new file mode 100644
index 0000000000000000000000000000000000000000..170755b8412c1c6c5ef5b2ff1bedd329548b8cca
--- /dev/null
+++ b/src/IceRevision.h
@@ -0,0 +1,32 @@
+//===- subzero/src/IceRevision.h - Revision string embedding ----*- C++ -*-===//
+//
+// The Subzero Code Generator
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+///
+/// \file
+/// \brief Declares the function for returning the Subzero revision string.
+///
+//===----------------------------------------------------------------------===//
+
+#ifndef SUBZERO_SRC_ICEREVISION_H
+#define SUBZERO_SRC_ICEREVISION_H
+
+namespace Ice {
+
+// Returns the Subzero revision string, which is meant to be essentially the git
+// hash of the repo when Subzero was built.
+//
+// Note: It would be possible to declare this a constexpr char[] and put its
+// definition right here in the include file. But since the git hash is passed
+// to the compiler on the command line, and compilation is directed through a
+// Makefile, lack of recompilation could lead to different files seeing
+// inconsistent revision strings.
+const char *getSubzeroRevision();
+
+} // end of namespace Ice
+
+#endif // SUBZERO_SRC_ICEREVISION_H
« no previous file with comments | « src/IceGlobalContext.cpp ('k') | src/IceRevision.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698