Changeset 8565a42 in mainline for uspace/lib/c/arch/ia32/_link.ld.in


Ignore:
Timestamp:
2018-03-02T20:34:50Z (7 years ago)
Author:
GitHub <noreply@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a1a81f69, d5e5fd1
Parents:
3061bc1 (diff), 34e1206 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:34:50)
git-committer:
GitHub <noreply@…> (2018-03-02 20:34:50)
Message:

Remove all trailing whitespace, everywhere.

See individual commit messages for details.

File:
1 edited

Legend:

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

    r3061bc1 r8565a42  
    2525        . = 0x1000 + SIZEOF_HEADERS;
    2626#endif
    27        
     27
    2828        .init : {
    2929                *(.init);
    3030        } :text
    31        
     31
    3232        .text : {
    3333                *(.text .text.*);
    3434                *(.rodata .rodata.*);
    3535        } :text
    36        
     36
    3737#if defined(SHLIB) || defined(DLEXE)
    3838        .rel.plt : {
     
    4646                *(.rel.*);
    4747        } :text
    48        
     48
    4949        .plt : {
    5050                *(.plt);
    5151        } :text
    52        
     52
    5353        .dynsym : {
    5454                *(.dynsym);
    5555        } :text
    56        
     56
    5757        .dynstr : {
    5858                *(.dynstr);
    5959        } :text
    60        
     60
    6161        .hash : {
    6262                *(.hash);
    6363        } :text
    6464#endif
    65        
     65
    6666#if defined(LOADER) || defined(DLEXE)
    6767        .interp : {
     
    6969        } :interp :text
    7070#endif
    71        
     71
    7272        . = . + 0x1000;
    73        
     73
    7474#if defined(SHLIB) || defined(DLEXE)
    7575        .dynamic : {
     
    7777        } :data :dynamic
    7878#endif
    79        
     79
    8080        .data : {
    8181                *(.data);
    8282        } :data
    83        
     83
    8484#if defined(SHLIB) || defined(DLEXE)
    8585        .data.rel : {
    8686                *(.data.rel .data.rel.*);
    8787        } :data
    88        
     88
    8989        .got : {
    9090                *(.got);
    9191        } :data
    92        
     92
    9393        .got.plt : {
    9494                *(.got.plt);
    9595        } :data
    9696#endif
    97        
     97
    9898        .tdata : {
    9999                _tdata_start = .;
     
    107107                _tbss_end = .;
    108108        } :data :tls
    109        
     109
    110110        _tls_alignment = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss));
    111        
     111
    112112        .bss : {
    113113                *(.dynbss);
     
    115115                *(.bss);
    116116        } :data
    117        
     117
    118118#ifdef CONFIG_LINE_DEBUG
    119119        .comment 0 : { *(.comment); } :debug
     
    128128        .debug_str 0 : { *(.debug_str); } :debug
    129129#endif
    130        
     130
    131131        /DISCARD/ : {
    132132                *(*);
Note: See TracChangeset for help on using the changeset viewer.