[polly] r243179 - Normalize whitespace in makefiles

Michael Kruse llvm at meinersbur.de
Fri Jul 24 16:30:31 PDT 2015


Author: meinersbur
Date: Fri Jul 24 18:30:31 2015
New Revision: 243179

URL: http://llvm.org/viewvc/llvm-project?rev=243179&view=rev
Log:
Normalize whitespace in makefiles

Tabs for rules and space for line continuations.


Modified:
    polly/trunk/lib/Makefile
    polly/trunk/test/Makefile

Modified: polly/trunk/lib/Makefile
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Makefile?rev=243179&r1=243178&r2=243179&view=diff
==============================================================================
--- polly/trunk/lib/Makefile (original)
+++ polly/trunk/lib/Makefile Fri Jul 24 18:30:31 2015
@@ -27,8 +27,8 @@ ISL_CODEGEN_FILES= CodeGen/IslAst.cpp \
                    CodeGen/CodeGeneration.cpp
 
 POLLY_JSON_FILES= JSON/json_reader.cpp \
-		  JSON/json_value.cpp \
-		  JSON/json_writer.cpp
+                  JSON/json_value.cpp \
+                  JSON/json_writer.cpp
 
 ISL_FILES= External/isl/basis_reduction_tab.c \
            External/isl/isl_aff.c \
@@ -66,7 +66,7 @@ ISL_FILES= External/isl/basis_reduction_
            External/isl/isl_local_space.c \
            External/isl/isl_lp.c \
            External/isl/isl_map.c \
-	   External/isl/isl_map_list.c \
+           External/isl/isl_map_list.c \
            External/isl/isl_map_simplify.c \
            External/isl/isl_map_subtract.c \
            External/isl/isl_map_to_basic_set.c \
@@ -83,10 +83,10 @@ ISL_FILES= External/isl/basis_reduction_
            External/isl/isl_sample.c \
            External/isl/isl_scan.c \
            External/isl/isl_schedule.c \
-	   External/isl/isl_schedule_band.c \
-	   External/isl/isl_schedule_node.c \
-	   External/isl/isl_schedule_read.c \
-	   External/isl/isl_schedule_tree.c \
+           External/isl/isl_schedule_band.c \
+           External/isl/isl_schedule_node.c \
+           External/isl/isl_schedule_read.c \
+           External/isl/isl_schedule_tree.c \
            External/isl/isl_scheduler.c \
            External/isl/isl_seq.c \
            External/isl/isl_set_list.c \
@@ -109,33 +109,33 @@ ISL_FILES= External/isl/basis_reduction_
            External/isl/imath/imrat.c
 
 SOURCES= Polly.cpp \
-	 Support/GICHelper.cpp \
-	 Support/SCEVValidator.cpp \
-	 Support/RegisterPasses.cpp \
-	 Support/ScopHelper.cpp \
-	 Support/ScopLocation.cpp \
-	 Analysis/DependenceInfo.cpp \
-	 Analysis/ScopDetection.cpp \
-	 Analysis/ScopDetectionDiagnostic.cpp \
-	 Analysis/ScopInfo.cpp \
-	 Analysis/ScopGraphPrinter.cpp \
-	 Analysis/ScopPass.cpp \
-	 Analysis/TempScopInfo.cpp \
-	 CodeGen/BlockGenerators.cpp \
-	 CodeGen/LoopGenerators.cpp \
-	 CodeGen/IRBuilder.cpp \
-	 CodeGen/Utils.cpp \
-	 CodeGen/RuntimeDebugBuilder.cpp \
-	 Exchange/JSONExporter.cpp \
-	 Transform/Canonicalization.cpp \
-	 Transform/CodePreparation.cpp \
-	 Transform/DeadCodeElimination.cpp \
-	 Transform/IndependentBlocks.cpp \
-	 Transform/ScheduleOptimizer.cpp \
-	 ${GPGPU_FILES} \
-	 ${ISL_CODEGEN_FILES} \
-	 ${POLLY_JSON_FILES} \
-	 ${ISL_FILES}
+         Support/GICHelper.cpp \
+         Support/SCEVValidator.cpp \
+         Support/RegisterPasses.cpp \
+         Support/ScopHelper.cpp \
+         Support/ScopLocation.cpp \
+         Analysis/DependenceInfo.cpp \
+         Analysis/ScopDetection.cpp \
+         Analysis/ScopDetectionDiagnostic.cpp \
+         Analysis/ScopInfo.cpp \
+         Analysis/ScopGraphPrinter.cpp \
+         Analysis/ScopPass.cpp \
+         Analysis/TempScopInfo.cpp \
+         CodeGen/BlockGenerators.cpp \
+         CodeGen/LoopGenerators.cpp \
+         CodeGen/IRBuilder.cpp \
+         CodeGen/Utils.cpp \
+         CodeGen/RuntimeDebugBuilder.cpp \
+         Exchange/JSONExporter.cpp \
+         Transform/Canonicalization.cpp \
+         Transform/CodePreparation.cpp \
+         Transform/DeadCodeElimination.cpp \
+         Transform/IndependentBlocks.cpp \
+         Transform/ScheduleOptimizer.cpp \
+         ${GPGPU_FILES} \
+         ${ISL_CODEGEN_FILES} \
+         ${POLLY_JSON_FILES} \
+         ${ISL_FILES}
 
 #
 # Include Makefile.common so we know what to do.

Modified: polly/trunk/test/Makefile
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/test/Makefile?rev=243179&r1=243178&r2=243179&view=diff
==============================================================================
--- polly/trunk/test/Makefile (original)
+++ polly/trunk/test/Makefile Fri Jul 24 18:30:31 2015
@@ -52,9 +52,9 @@ lit.site.cfg: FORCE
 	     -e "s#@POLLY_BINARY_DIR@#$(PROJ_OBJ_DIR)/..#g" \
 	     -e "s#@TARGET_TRIPLE@#$(TARGET_TRIPLE)#g" \
 	     -e "s#@LLVM_SHLIBEXT@#$(SHLIBEXT)#g" \
-             -e "s#@POLLY_LIB_DIR@#$(LibDir)#g" \
-             -e "s#@LINK_POLLY_INTO_TOOLS@#OFF#g" \
-             -e "s#@CUDALIB_FOUND@#$(CUDALIB_FOUND)#g" \
+	     -e "s#@POLLY_LIB_DIR@#$(LibDir)#g" \
+	     -e "s#@LINK_POLLY_INTO_TOOLS@#OFF#g" \
+	     -e "s#@CUDALIB_FOUND@#$(CUDALIB_FOUND)#g" \
 	     $(PROJ_SRC_DIR)/lit.site.cfg.in > $@
 
 clean::





More information about the llvm-commits mailing list