[llvm] 5592710 - [NFC] Trim trailing whitespaces in `llvm/CMakeLists.txt`

Shilei Tian via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 16 09:51:12 PDT 2021


Author: Shilei Tian
Date: 2021-08-16T12:49:59-04:00
New Revision: 55927105dd7cd5d4c4da2a4e88e802a034ba54fd

URL: https://github.com/llvm/llvm-project/commit/55927105dd7cd5d4c4da2a4e88e802a034ba54fd
DIFF: https://github.com/llvm/llvm-project/commit/55927105dd7cd5d4c4da2a4e88e802a034ba54fd.diff

LOG: [NFC] Trim trailing whitespaces in `llvm/CMakeLists.txt`

Added: 
    

Modified: 
    llvm/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/llvm/CMakeLists.txt b/llvm/CMakeLists.txt
index db6d11915671..34392f3308d0 100644
--- a/llvm/CMakeLists.txt
+++ b/llvm/CMakeLists.txt
@@ -803,8 +803,8 @@ if (TENSORFLOW_C_LIB_PATH)
   include_directories(${TENSORFLOW_C_LIB_PATH}/include)
   if (NOT TF_PROTO_HEADERS)
     message(STATUS "TF_PROTO_HEADERS not defined. Looking for tensorflow pip package.")
-    execute_process(COMMAND 
-      ${Python3_EXECUTABLE} "-m" "pip" "show" "tensorflow" 
+    execute_process(COMMAND
+      ${Python3_EXECUTABLE} "-m" "pip" "show" "tensorflow"
       OUTPUT_VARIABLE TF_PIP_OUT)
     if ("${TF_PIP_OUT}" STREQUAL "")
       message(FATAL ERROR "Tensorflow pip package is also required for 'development' mode (protobuf headers)")
@@ -836,7 +836,7 @@ if (NOT TENSORFLOW_AOT_PATH STREQUAL "")
   include_directories(${TENSORFLOW_AOT_PATH}/include)
   add_subdirectory(${TENSORFLOW_AOT_PATH}/xla_aot_runtime_src
     ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}/tf_runtime)
-  install(TARGETS tf_xla_runtime EXPORT LLVMExports 
+  install(TARGETS tf_xla_runtime EXPORT LLVMExports
     ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX} COMPONENT tf_xla_runtime)
   set_property(GLOBAL APPEND PROPERTY LLVM_EXPORTS tf_xla_runtime)
 endif()


        


More information about the llvm-commits mailing list