aboutsummaryrefslogtreecommitdiff
path: root/third_party/abseil-cpp/absl/flags/flag_benchmark.lds
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/abseil-cpp/absl/flags/flag_benchmark.lds')
-rw-r--r--third_party/abseil-cpp/absl/flags/flag_benchmark.lds13
1 files changed, 0 insertions, 13 deletions
diff --git a/third_party/abseil-cpp/absl/flags/flag_benchmark.lds b/third_party/abseil-cpp/absl/flags/flag_benchmark.lds
deleted file mode 100644
index af115dfc00..0000000000
--- a/third_party/abseil-cpp/absl/flags/flag_benchmark.lds
+++ /dev/null
@@ -1,13 +0,0 @@
-/* This linker script forces the flags used by flags_benchmark
- * into a separate page-aligned section. This isn't necessary for
- * correctness but ensures that the benchmark results are more
- * reproducible across unrelated code changes.
- */
-SECTIONS {
- .benchmark_flags : {
- . = ALIGN(0x1000);
- * (.benchmark_flags);
- }
-}
-
-INSERT AFTER .data