diff options
author | Tobias Grosser <grosser@fim.uni-passau.de> | 2012-03-08 15:21:42 +0000 |
---|---|---|
committer | Tobias Grosser <grosser@fim.uni-passau.de> | 2012-03-08 15:21:42 +0000 |
commit | 45ed487a9cdf6ef80a3489de6ac566485add529b (patch) | |
tree | 61f94c19dccc2b1edf12587bb3632c67f0f8c22e | |
parent | f5140611fcbf7722d6a5632522d266e9c1d4875d (diff) | |
download | bcm5719-llvm-45ed487a9cdf6ef80a3489de6ac566485add529b.tar.gz bcm5719-llvm-45ed487a9cdf6ef80a3489de6ac566485add529b.zip |
Dependences: Fix typo
llvm-svn: 152318
-rw-r--r-- | polly/lib/Analysis/Dependences.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/Analysis/Dependences.cpp b/polly/lib/Analysis/Dependences.cpp index e9578761917..b11648e35cc 100644 --- a/polly/lib/Analysis/Dependences.cpp +++ b/polly/lib/Analysis/Dependences.cpp @@ -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; } |