aco: Fix -Wshadow warnings

Reviewed-by: Rhys Perry <pendingchaos02@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7430>
This commit is contained in:
Tony Wasserka
2020-11-03 14:40:05 +01:00
committed by Marge Bot
parent bc7f442d8e
commit 2bb8874320
16 changed files with 194 additions and 196 deletions

View File

@@ -117,7 +117,7 @@ public:
struct Result {
Instruction *instr;
Result(Instruction *instr) : instr(instr) {}
Result(Instruction *instr_) : instr(instr_) {}
operator Instruction *() const {
return instr;