Use isa check instead of getTypeID() check.

llvm-svn: 47518
This commit is contained in:
Devang Patel 2008-02-23 01:17:17 +00:00
parent f28aec5261
commit 6c4bc99c44
1 changed files with 1 additions and 1 deletions

View File

@ -1462,7 +1462,7 @@ ResultTypes
: Types {
if (!UpRefs.empty())
GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
if (!(*$1)->isFirstClassType() && (*$1)->getTypeID() != Type::StructTyID)
if (!(*$1)->isFirstClassType() && !isa<StructType>($1->get()))
GEN_ERROR("LLVM functions cannot return aggregate types");
$$ = $1;
}