xref: /aosp_15_r20/external/cronet/third_party/abseil-cpp/absl/flags/flag_benchmark.lds (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1/* This linker script forces the flags used by flags_benchmark
2 * into a separate page-aligned section. This isn't necessary for
3 * correctness but ensures that the benchmark results are more
4 * reproducible across unrelated code changes.
5 */
6SECTIONS {
7  .benchmark_flags : {
8    . = ALIGN(0x1000);
9    * (.benchmark_flags);
10  }
11}
12
13INSERT AFTER .data
14