Fix typo fsqrt -> sqrtf.
[deliverable/binutils-gdb.git] / ld / testsuite / ld-scripts / provide-4.t
1 SECTIONS
2 {
3 PROVIDE (foo = 1);
4 PROVIDE (bar = 2);
5 PROVIDE (baz = 3);
6 .data 0x2000 :
7 {
8 *(.data)
9
10 PROVIDE (loc1 = ALIGN (., 0x10));
11 PROVIDE (loc2 = ALIGN (., 0x10));
12 }
13
14 PROVIDE (loc3 = loc1 + 0x20);
15 loc4 = loc2 + 0x20;
16 }
This page took 0.062017 seconds and 4 git commands to generate.