diff options
author | Michael Kruse <llvm@meinersbur.de> | 2015-07-24 23:30:31 +0000 |
---|---|---|
committer | Michael Kruse <llvm@meinersbur.de> | 2015-07-24 23:30:31 +0000 |
commit | be16d22f04fd23c3bb734aa8af9baa5bf58b7abc (patch) | |
tree | accef7d85c70c78fa3f13453df60c387a033aaec | |
parent | 2296dc137c07c09f058d7171de0ebdccdc330adb (diff) | |
download | bcm5719-llvm-be16d22f04fd23c3bb734aa8af9baa5bf58b7abc.tar.gz bcm5719-llvm-be16d22f04fd23c3bb734aa8af9baa5bf58b7abc.zip |
Normalize whitespace in makefiles
Tabs for rules and space for line continuations.
llvm-svn: 243179
-rw-r--r-- | polly/lib/Makefile | 68 | ||||
-rw-r--r-- | polly/test/Makefile | 6 |
2 files changed, 37 insertions, 37 deletions
diff --git a/polly/lib/Makefile b/polly/lib/Makefile index a9640740efd..1ba3e40213d 100644 --- a/polly/lib/Makefile +++ b/polly/lib/Makefile @@ -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_tab.c \ 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_tab.c \ 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_tab.c \ 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. diff --git a/polly/test/Makefile b/polly/test/Makefile index bab51fe793f..879da158907 100644 --- a/polly/test/Makefile +++ b/polly/test/Makefile @@ -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:: |