about summary refs log tree commit diff
diff options
context:
space:
mode:
authorZalathar <Zalathar@users.noreply.github.com>2024-08-27 15:12:51 +1000
committerZalathar <Zalathar@users.noreply.github.com>2024-08-27 17:30:19 +1000
commit25ca8a283f757b95929da385c4493b45e3012e78 (patch)
treecee536babd09a8513a6cf3eea08ef7b43be6de4f
parentb6dba995b4efddfae2b567f7bce8d5217a0e7477 (diff)
downloadrust-25ca8a283f757b95929da385c4493b45e3012e78.tar.gz
rust-25ca8a283f757b95929da385c4493b45e3012e78.zip
Sort the list of source files
-rw-r--r--library/profiler_builtins/build.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/library/profiler_builtins/build.rs b/library/profiler_builtins/build.rs
index 7dcbcc444ba..6089937e0b7 100644
--- a/library/profiler_builtins/build.rs
+++ b/library/profiler_builtins/build.rs
@@ -20,10 +20,12 @@ fn main() {
     // 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.
     let mut profile_sources = vec![
+        // tidy-alphabetical-start
         "GCDAProfiling.c",
         "InstrProfiling.c",
         "InstrProfilingBuffer.c",
         "InstrProfilingFile.c",
+        "InstrProfilingInternal.c",
         "InstrProfilingMerge.c",
         "InstrProfilingMergeFile.c",
         "InstrProfilingNameVar.c",
@@ -38,8 +40,7 @@ fn main() {
         "InstrProfilingValue.c",
         "InstrProfilingVersionVar.c",
         "InstrProfilingWriter.c",
-        // These files were added in LLVM 11.
-        "InstrProfilingInternal.c",
+        // tidy-alphabetical-end
     ];
 
     if target_env == "msvc" {