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

Unified Diff: src/IceRevision.cpp

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/IceRevision.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceRevision.cpp
diff --git a/src/IceRevision.cpp b/src/IceRevision.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..b8233d04c0f251501b7c3f1c4c63827424d8ecd4
--- /dev/null
+++ b/src/IceRevision.cpp
@@ -0,0 +1,28 @@
+//===- subzero/src/IceRevision.cpp - Revision string embedding ------------===//
+//
+// The Subzero Code Generator
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+///
+/// \file
+/// \brief Implements the function for returning the Subzero revision string.
+///
+//===----------------------------------------------------------------------===//
+
+#include "IceRevision.h"
+
+#define XSTRINGIFY(x) STRINGIFY(x)
+#define STRINGIFY(x) #x
+
+#ifndef SUBZERO_REVISION
+#define SUBZERO_REVISION unknown
+#endif // !SUBZERO_REVISION
+
+namespace Ice {
+const char *getSubzeroRevision() {
+ return "Subzero_revision_" XSTRINGIFY(SUBZERO_REVISION);
+}
+} // end of namespace Ice
« no previous file with comments | « src/IceRevision.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698