aboutsummaryrefslogtreecommitdiff
path: root/libclc/cmake
diff options
context:
space:
mode:
authorFraser Cormack <fraser@codeplay.com>2024-03-18 14:37:04 +0000
committerGitHub <noreply@github.com>2024-03-18 14:37:04 +0000
commit9253950ec1690e786ba1cdaaf3234fb30b633eab (patch)
tree05dd756ced6d637f0f3eee8936c75b7af45b3db0 /libclc/cmake
parente2e3624fae669f85de1445bf7037ff29feb30905 (diff)
downloadllvm-9253950ec1690e786ba1cdaaf3234fb30b633eab.zip
llvm-9253950ec1690e786ba1cdaaf3234fb30b633eab.tar.gz
llvm-9253950ec1690e786ba1cdaaf3234fb30b633eab.tar.bz2
[libclc] Convert tabs to spaces in CMake (#85634)
Having a mix of tabs and spaces makes the diff of any changes to the build system noisier than necessary. This commit unifies them to two spaces. This includes some minor cosmetic changes such as with joining things on one line where appropriate. There are other files in libclc which have tabs but those haven't been touched at this time. Those could come at another time if desired, though they might be more contentious as the project isn't clang-formatted at all and so that might invite larger discussions around formatting.
Diffstat (limited to 'libclc/cmake')
-rw-r--r--libclc/cmake/CMakeLLAsmInformation.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/libclc/cmake/CMakeLLAsmInformation.cmake b/libclc/cmake/CMakeLLAsmInformation.cmake
index 218e20a..35ec308 100644
--- a/libclc/cmake/CMakeLLAsmInformation.cmake
+++ b/libclc/cmake/CMakeLLAsmInformation.cmake
@@ -1,7 +1,7 @@
if(NOT CMAKE_LLAsm_COMPILE_OBJECT)
set(CMAKE_LLAsm_COMPILE_OBJECT
- "${CMAKE_LLAsm_PREPROCESSOR} -E -P <DEFINES> <INCLUDES> <FLAGS> -x cl <SOURCE> -o <OBJECT>.temp"
- "<CMAKE_LLAsm_COMPILER> -o <OBJECT> <OBJECT>.temp")
+ "${CMAKE_LLAsm_PREPROCESSOR} -E -P <DEFINES> <INCLUDES> <FLAGS> -x cl <SOURCE> -o <OBJECT>.temp"
+ "<CMAKE_LLAsm_COMPILER> -o <OBJECT> <OBJECT>.temp")
endif()
if(NOT CMAKE_LLAsm_CREATE_STATIC_LIBRARY)