[compiler-rt] d4abdef - [ORC-RT] Rename macho_tlv.x86-64.s to macho_tlv.x86-64.S (uppercase suffix)
Lang Hames via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 20 22:27:43 PDT 2021
Author: Lang Hames
Date: 2021-07-21T15:24:24+10:00
New Revision: d4abdefc998a1ee19d5edc79ec233774cbf64f6a
URL: https://github.com/llvm/llvm-project/commit/d4abdefc998a1ee19d5edc79ec233774cbf64f6a
DIFF: https://github.com/llvm/llvm-project/commit/d4abdefc998a1ee19d5edc79ec233774cbf64f6a.diff
LOG: [ORC-RT] Rename macho_tlv.x86-64.s to macho_tlv.x86-64.S (uppercase suffix)
Uppercase .S suffixes for assembly seem to be the convention in compiler-rt.
I'm hoping this will fix the build failures on ccache builders (e.g.
https://lab.llvm.org/buildbot/#/builders/109/builds/18980)
Added:
compiler-rt/lib/orc/macho_tlv.x86-64.S
Modified:
compiler-rt/lib/orc/CMakeLists.txt
Removed:
compiler-rt/lib/orc/macho_tlv.x86-64.s
################################################################################
diff --git a/compiler-rt/lib/orc/CMakeLists.txt b/compiler-rt/lib/orc/CMakeLists.txt
index 541634e13ab7..22381d8da0a7 100644
--- a/compiler-rt/lib/orc/CMakeLists.txt
+++ b/compiler-rt/lib/orc/CMakeLists.txt
@@ -11,7 +11,7 @@ set(ORC_SOURCES
# Implementation files for all ORC architectures.
set(x86_64_SOURCES
# x86-64 specific assembly files will go here.
- macho_tlv.x86-64.s
+ macho_tlv.x86-64.S
)
set(ORC_IMPL_HEADERS
diff --git a/compiler-rt/lib/orc/macho_tlv.x86-64.s b/compiler-rt/lib/orc/macho_tlv.x86-64.S
similarity index 100%
rename from compiler-rt/lib/orc/macho_tlv.x86-64.s
rename to compiler-rt/lib/orc/macho_tlv.x86-64.S
More information about the llvm-commits
mailing list