• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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