Subzero: Fix MINIMAL build error.
A NOASSERT/MINIMAL build complains that private field Func is unused, which turned out to be true because of shadowing.
BUG= none
R=ascull@google.com
Review URL: https://codereview.chromium.org/1312903015
diff --git a/src/IceLoopAnalyzer.cpp b/src/IceLoopAnalyzer.cpp
index 7da479f..e2f7487 100644
--- a/src/IceLoopAnalyzer.cpp
+++ b/src/IceLoopAnalyzer.cpp
@@ -34,7 +34,7 @@
BB->incrementLoopNestDepth();
}
-LoopAnalyzer::LoopAnalyzer(Cfg *Func) : Func(Func) {
+LoopAnalyzer::LoopAnalyzer(Cfg *Fn) : Func(Fn) {
const NodeList &Nodes = Func->getNodes();
// Allocate memory ahead of time. This is why a vector is used instead of a