Fix unitialized variable in AuxVector::GetEntryName() which crashed in AuxVector::DumpToLog

llvm-svn: 184023
This commit is contained in:
Michael Sartain 2013-06-15 00:25:52 +00:00
parent a6423eb8be
commit ff5b497c1f

View File

@ -124,7 +124,7 @@ AuxVector::DumpToLog(Log *log) const
const char *
AuxVector::GetEntryName(EntryType type)
{
const char *name;
const char *name = "AT_???";
#define ENTRY_NAME(_type) _type: name = #_type
switch (type)