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

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: Change the previous underscore naming style 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/IceTargetLowering.h
diff --git a/src/IceTargetLowering.h b/src/IceTargetLowering.h
index b543208d2da5d227db4bd8e3fe3964379fe7d54c..29304d7d2bb9ebd3495dee666065925f6f69db85 100644
--- a/src/IceTargetLowering.h
+++ b/src/IceTargetLowering.h
@@ -398,7 +398,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;
};
@@ -418,7 +418,7 @@ public:
virtual void lower() {}
protected:
- explicit TargetHeaderLowering(GlobalContext *Ctx) : Ctx(Ctx) {}
+ explicit TargetHeaderLowering(GlobalContext *MyCtx) : Ctx(MyCtx) {}
GlobalContext *Ctx;
};
« src/IceInstARM32.h ('K') | « src/IceRegAlloc.cpp ('k') | src/IceTargetLowering.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698