Dependences: Fix typo

llvm-svn: 152318
This commit is contained in:
Tobias Grosser 2012-03-08 15:21:42 +00:00
parent f5140611fc
commit 45ed487a9c
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ bool Dependences::isParallelDimension(__isl_take isl_set *Domain,
isl_union_set *Invalid = isl_union_set_subtract(Distance, ValidDistancesUS);
bool IsParallel = isl_union_set_is_empty(Invalid);
isl_union_set_free(Inalid);
isl_union_set_free(Invalid);
return IsParallel;
}