Fix -Asserts build

llvm-svn: 133305
This commit is contained in:
Matt Beaumont-Gay 2011-06-17 22:21:12 +00:00
parent 4fdf57b0b2
commit c3dfb5fa89
1 changed files with 1 additions and 2 deletions

View File

@ -356,8 +356,7 @@ bool LLParser::ParseNamedType() {
}
// Inserting a name that is already defined, get the existing name.
const Type *Existing = M->getTypeByName(Name);
assert(Existing && "Conflict but no matching type?!");
assert(M->getTypeByName(Name) && "Conflict but no matching type?!");
// Otherwise, this is an attempt to redefine a type, report the error.
return Error(NameLoc, "redefinition of type named '" + Name + "' of type '" +