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

Unified Diff: src/IceInstrumentation.h

Issue 2054943002: Implemented global redzones. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 4 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
« src/IceCompileServer.cpp ('K') | « src/IceGlobalInits.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceInstrumentation.h
diff --git a/src/IceInstrumentation.h b/src/IceInstrumentation.h
index abd5d083e3e835b50e958cc67f1388c79e3a9ee7..fcb8140307560bf093d7b5410ff213ea1ef5ae13 100644
--- a/src/IceInstrumentation.h
+++ b/src/IceInstrumentation.h
@@ -41,7 +41,9 @@ class Instrumentation {
public:
Instrumentation(GlobalContext *Ctx) : Ctx(Ctx) {}
- virtual void instrumentGlobals() {};
+ virtual void instrumentGlobals(VariableDeclarationList &Globals) {
Jim Stichnoth 2016/06/09 22:27:39 If you do this: virtual void instrumentGlobals(
tlively 2016/06/09 23:30:10 Done.
+ (void) Globals;
+ };
void instrumentFunc(Cfg *Func);
private:
« src/IceCompileServer.cpp ('K') | « src/IceGlobalInits.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698