[polly] r261435 - Add the missing modifier 'static' for addZeroPaddingToSchedule, NFC

Hongbin Zheng via llvm-commits llvm-commits at lists.llvm.org
Sat Feb 20 06:45:46 PST 2016


Author: ether
Date: Sat Feb 20 08:45:46 2016
New Revision: 261435

URL: http://llvm.org/viewvc/llvm-project?rev=261435&view=rev
Log:
Add the missing modifier 'static' for addZeroPaddingToSchedule, NFC

Modified:
    polly/trunk/lib/Analysis/DependenceInfo.cpp

Modified: polly/trunk/lib/Analysis/DependenceInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Analysis/DependenceInfo.cpp?rev=261435&r1=261434&r2=261435&view=diff
==============================================================================
--- polly/trunk/lib/Analysis/DependenceInfo.cpp (original)
+++ polly/trunk/lib/Analysis/DependenceInfo.cpp Sat Feb 20 08:45:46 2016
@@ -233,7 +233,7 @@ static isl_stat getMaxScheduleDim(__isl_
   return isl_stat_ok;
 }
 
-__isl_give isl_union_map *
+static __isl_give isl_union_map *
 addZeroPaddingToSchedule(__isl_take isl_union_map *Schedule) {
   unsigned int MaxScheduleDim = 0;
 




More information about the llvm-commits mailing list