[llvm] 953ad29 - [gn build] alphabetize conditional branches in tsan/rtl/BUILD.gn
Nico Weber via llvm-commits
llvm-commits at lists.llvm.org
Wed Dec 7 18:43:35 PST 2022
Author: Nico Weber
Date: 2022-12-07T21:42:42-05:00
New Revision: 953ad29e53d324a9bdcbce06bec3a6b2e0fa5e03
URL: https://github.com/llvm/llvm-project/commit/953ad29e53d324a9bdcbce06bec3a6b2e0fa5e03
DIFF: https://github.com/llvm/llvm-project/commit/953ad29e53d324a9bdcbce06bec3a6b2e0fa5e03.diff
LOG: [gn build] alphabetize conditional branches in tsan/rtl/BUILD.gn
Added:
Modified:
llvm/utils/gn/secondary/compiler-rt/lib/tsan/rtl/BUILD.gn
Removed:
################################################################################
diff --git a/llvm/utils/gn/secondary/compiler-rt/lib/tsan/rtl/BUILD.gn b/llvm/utils/gn/secondary/compiler-rt/lib/tsan/rtl/BUILD.gn
index 6ecf9e312df9..429afd835d28 100644
--- a/llvm/utils/gn/secondary/compiler-rt/lib/tsan/rtl/BUILD.gn
+++ b/llvm/utils/gn/secondary/compiler-rt/lib/tsan/rtl/BUILD.gn
@@ -120,12 +120,12 @@ target(tsan_target_type, "rtl") {
sources += [ "tsan_rtl_amd64.S" ]
} else if (target_cpu == "arm64") {
sources += [ "tsan_rtl_aarch64.S" ]
- } else if (target_cpu == "powerpc64") {
- sources += [ "tsan_rtl_ppc64.S" ]
} else if (target_cpu == "loongarch64") {
sources += [ "tsan_rtl_loongarch64.S" ]
} else if (target_cpu == "mips64") {
sources += [ "tsan_rtl_mips64.S" ]
+ } else if (target_cpu == "powerpc64") {
+ sources += [ "tsan_rtl_ppc64.S" ]
} else if (target_cpu == "s390x") {
sources += [ "tsan_rtl_s390x.S" ]
}
More information about the llvm-commits
mailing list