Fix Name Access

Get the Record name as a string explicitly to avoid asserts.

llvm-svn: 142516
This commit is contained in:
David Greene 2011-10-19 13:03:58 +00:00
parent 07e055f919
commit 8eed9988b1
1 changed files with 2 additions and 1 deletions

View File

@ -1747,7 +1747,8 @@ bool TGParser::ParseClass() {
if (!CurRec->getValues().empty() ||
!CurRec->getSuperClasses().empty() ||
!CurRec->getTemplateArgs().empty())
return TokError("Class '" + CurRec->getName() + "' already defined");
return TokError("Class '" + CurRec->getNameInitAsString()
+ "' already defined");
} else {
// If this is the first reference to this class, create and add it.
CurRec = new Record(Lex.getCurStrVal(), Lex.getLoc(), Records);