xref: /aosp_15_r20/external/angle/third_party/abseil-cpp/absl/flags/flag_benchmark.lds (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
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