http://lab.llvm.org:8011/builders/sanitizer-windows/builds/2308
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234292
91177308-0d34-0410-b5e6-
96231b3b80d8
// Add return type. A void return won't have a type.
auto Elements = cast<MDSubroutineType>(CTy)->getTypeArray();
if (Elements.size())
- if (auto RTy = resolve(Elements[0]))
+ if (MDType *RTy = resolve(Elements[0]))
addType(Buffer, RTy);
bool isPrototyped = true;
// Add a return type. If this is a type like a C/C++ void type we don't add a
// return type.
if (Args.size())
- if (auto Ty = resolve(Args[0]))
+ if (MDType *Ty = resolve(Args[0]))
addType(SPDie, Ty);
unsigned VK = SP.getVirtuality();