Avoid naming variable after type to fix GCC 5.3 build
authorReid Kleckner <rnk@google.com>
Fri, 6 Dec 2019 19:24:25 +0000 (11:24 -0800)
committerReid Kleckner <rnk@google.com>
Fri, 6 Dec 2019 19:25:28 +0000 (11:25 -0800)
commit7f63db197e7453a6438c15e50a5508cc7613a293
treea93035cdfc618ef570814e181b37169e8f7e0901
parent43e2a901e1521759a0176cdec3aad4d00919142e
Avoid naming variable after type to fix GCC 5.3 build

GCC says:
.../llvm/lib/DebugInfo/GSYM/FunctionInfo.cpp:195:12:
error: ‘InfoType’ is not a class, namespace, or enumeration
       case InfoType::EndOfList:
                   ^

Presumably, GCC thinks InfoType is a variable here. Work around it by
using the name IT as is done above.
llvm/lib/DebugInfo/GSYM/FunctionInfo.cpp