[llvm-commits] [polly] r152318 - /polly/trunk/lib/Analysis/Dependences.cpp
Tobias Grosser
grosser at fim.uni-passau.de
Thu Mar 8 07:21:42 PST 2012
Author: grosser
Date: Thu Mar 8 09:21:42 2012
New Revision: 152318
URL: http://llvm.org/viewvc/llvm-project?rev=152318&view=rev
Log:
Dependences: Fix typo
Modified:
polly/trunk/lib/Analysis/Dependences.cpp
Modified: polly/trunk/lib/Analysis/Dependences.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Analysis/Dependences.cpp?rev=152318&r1=152317&r2=152318&view=diff
==============================================================================
--- polly/trunk/lib/Analysis/Dependences.cpp (original)
+++ polly/trunk/lib/Analysis/Dependences.cpp Thu Mar 8 09:21:42 2012
@@ -220,7 +220,7 @@
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;
}
More information about the llvm-commits
mailing list