diff options
author | Steve Chamberlain <steve@cygnus> | 1991-04-19 01:04:55 +0000 |
---|---|---|
committer | Steve Chamberlain <steve@cygnus> | 1991-04-19 01:04:55 +0000 |
commit | 5f288d8af8f1e9e0b73368fbf123b036b8c3aaa4 (patch) | |
tree | 2c07d2602fd663a145b2747e0bac9a84d08e25aa /ld | |
parent | b0f368691e0c9f8badd0ad3b430c56ed37072abc (diff) | |
download | gdb-5f288d8af8f1e9e0b73368fbf123b036b8c3aaa4.zip gdb-5f288d8af8f1e9e0b73368fbf123b036b8c3aaa4.tar.gz gdb-5f288d8af8f1e9e0b73368fbf123b036b8c3aaa4.tar.bz2 |
Put spaces around the / signs
Diffstat (limited to 'ld')
-rwxr-xr-x | ld/ld-gld-Ur.script | 4 | ||||
-rwxr-xr-x | ld/ld-gld.script | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ld/ld-gld-Ur.script b/ld/ld-gld-Ur.script index 3de5ed4..8d3f12b 100755 --- a/ld/ld-gld-Ur.script +++ b/ld/ld-gld-Ur.script @@ -13,11 +13,11 @@ SECTIONS { *(.data) ___DTOR_LIST__ = . ; - LONG((___CTOR_LIST__ - .)/4 -2) + LONG((___CTOR_LIST__ - .) / 4 -2) *(___DTOR_LIST__) LONG(0) ___CTOR_LIST__ = . ; - LONG((___end_list__ - .)/4 -2) + LONG((___end_list__ - .) / 4 -2) *(___CTOR_LIST__) LONG(0) ___end_list__ = . ; diff --git a/ld/ld-gld.script b/ld/ld-gld.script index 28eafef..8c08f78 100755 --- a/ld/ld-gld.script +++ b/ld/ld-gld.script @@ -15,11 +15,11 @@ SECTIONS { *(.data) ___DTOR_LIST__ = . ; - LONG((___CTOR_LIST__ - .)/4 -2) + LONG((___CTOR_LIST__ - .) / 4 -2) *(___DTOR_LIST__) LONG(0) ___CTOR_LIST__ = . ; - LONG((_edata - .)/4 -2) + LONG((_edata - .) / 4 -2) *(___CTOR_LIST__) LONG(0) _edata = .; |