1
Fork 0

Sort the list of source files

This commit is contained in:
Zalathar 2024-08-27 15:12:51 +10:00
parent b6dba995b4
commit 25ca8a283f

View file

@ -20,10 +20,12 @@ fn main() {
// FIXME: `rerun-if-changed` directives are not currently emitted and the build script // FIXME: `rerun-if-changed` directives are not currently emitted and the build script
// will not rerun on changes in these source files or headers included into them. // will not rerun on changes in these source files or headers included into them.
let mut profile_sources = vec![ let mut profile_sources = vec![
// tidy-alphabetical-start
"GCDAProfiling.c", "GCDAProfiling.c",
"InstrProfiling.c", "InstrProfiling.c",
"InstrProfilingBuffer.c", "InstrProfilingBuffer.c",
"InstrProfilingFile.c", "InstrProfilingFile.c",
"InstrProfilingInternal.c",
"InstrProfilingMerge.c", "InstrProfilingMerge.c",
"InstrProfilingMergeFile.c", "InstrProfilingMergeFile.c",
"InstrProfilingNameVar.c", "InstrProfilingNameVar.c",
@ -38,8 +40,7 @@ fn main() {
"InstrProfilingValue.c", "InstrProfilingValue.c",
"InstrProfilingVersionVar.c", "InstrProfilingVersionVar.c",
"InstrProfilingWriter.c", "InstrProfilingWriter.c",
// These files were added in LLVM 11. // tidy-alphabetical-end
"InstrProfilingInternal.c",
]; ];
if target_env == "msvc" { if target_env == "msvc" {