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

Unified Diff: src/IceTargetLowering.h

Issue 1221643012: Subzero: Add -Wshadow to the build. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Code review changes Created 5 years, 5 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/IceTargetLowering.h
diff --git a/src/IceTargetLowering.h b/src/IceTargetLowering.h
index a5b52ce91ca8413b493a8eee62a94fb4fe8fa7c9..6161b8132dc7f5b32c219da7e0c70c7e16e3d266 100644
--- a/src/IceTargetLowering.h
+++ b/src/IceTargetLowering.h
@@ -402,7 +402,7 @@ protected:
/// Perhaps there is some difference when the location is unaligned.
static const char *getEmit32Directive() { return ".long"; }
- explicit TargetDataLowering(GlobalContext *Ctx) : Ctx(Ctx) {}
+ explicit TargetDataLowering(GlobalContext *MyCtx) : Ctx(MyCtx) {}
GlobalContext *Ctx;
};
@@ -422,7 +422,7 @@ public:
virtual void lower() {}
protected:
- explicit TargetHeaderLowering(GlobalContext *Ctx) : Ctx(Ctx) {}
+ explicit TargetHeaderLowering(GlobalContext *MyCtx) : Ctx(MyCtx) {}
GlobalContext *Ctx;
};
« src/IceInst.h ('K') | « src/IceRegistersX8632.h ('k') | src/IceTargetLowering.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698