Changeset f1380b7 in mainline for uspace/lib/c/arch/mips32/_link.ld.in


Ignore:
Timestamp:
2018-03-02T20:21:57Z (7 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
34e1206
Parents:
a35b458
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:51:04)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:21:57)
Message:

style: Remove trailing whitespace on _all_ lines, including empty ones, remaining files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/arch/mips32/_link.ld.in

    ra35b458 rf1380b7  
    1818        . = 0x4000 + SIZEOF_HEADERS;
    1919#endif
    20        
     20
    2121        .init : {
    2222                *(.init);
    2323        } :text
    24        
     24
    2525        .text : {
    2626                *(.text .text.*);
    2727                *(.rodata .rodata.*);
    2828        } :text
    29        
     29
    3030#ifdef LOADER
    3131        .interp : {
     
    3333        } :interp :text
    3434#endif
    35        
     35
    3636        . = . + 0x4000;
    37        
     37
    3838        .data : {
    3939                *(.data);
    4040                *(.data.rel*);
    4141        } :data
    42        
     42
    4343        .got : {
    4444                _gp = .;
    4545                *(.got);
    4646        } :data
    47        
     47
    4848        .tdata : {
    4949                _tdata_start = .;
     
    5151                _tdata_end = .;
    5252        } :data
    53        
     53
    5454        .tbss : {
    5555                _tbss_start = .;
     
    5757                _tbss_end = .;
    5858        } :data
    59        
     59
    6060        _tls_alignment = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss));
    61        
     61
    6262        .sbss : {
    6363                *(.scommon);
    6464                *(.sbss);
    6565        }
    66        
     66
    6767        .bss : {
    6868                *(.bss);
    6969                *(COMMON);
    7070        } :data
    71        
     71
    7272        /DISCARD/ : {
    7373                *(*);
Note: See TracChangeset for help on using the changeset viewer.