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

Unified Diff: src/IceAPInt.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
« no previous file with comments | « Makefile.standalone ('k') | src/IceAssembler.h » ('j') | src/IceConverter.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceAPInt.h
diff --git a/src/IceAPInt.h b/src/IceAPInt.h
index 9ef0702186fe6d64ebe437bd5b011b1be5e7d7a2..9f35da489de511c8c99d37ac9a5e4d94a1184182 100644
--- a/src/IceAPInt.h
+++ b/src/IceAPInt.h
@@ -31,7 +31,7 @@ public:
/// Bits in an (internal) value.
static const SizeT APINT_BITS_PER_WORD = sizeof(uint64_t) * CHAR_BIT;
- APInt(SizeT Bits, uint64_t Val) : BitWidth(Bits), Val(Val) {
+ APInt(SizeT Bits, uint64_t MyVal) : BitWidth(Bits), Val(MyVal) {
assert(Bits && "bitwidth too small");
assert(Bits <= APINT_BITS_PER_WORD && "bitwidth too big");
clearUnusedBits();
« no previous file with comments | « Makefile.standalone ('k') | src/IceAssembler.h » ('j') | src/IceConverter.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698