Eliminate variable shadowing warnings with MSVC (#17)

This commit is contained in:
Mat M 2016-09-04 06:30:57 -04:00 committed by Merry
parent 7f9a0c3c38
commit 858796a029
5 changed files with 16 additions and 7 deletions

View file

@ -46,8 +46,8 @@ Arm::LocationDescriptor Block::ConditionFailedLocation() const {
return cond_failed.get();
}
void Block::SetConditionFailedLocation(Arm::LocationDescriptor location) {
cond_failed = location;
void Block::SetConditionFailedLocation(Arm::LocationDescriptor fail_location) {
cond_failed = fail_location;
}
size_t& Block::ConditionFailedCycleCount() {