projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c3fe0c4
)
Correct syntax errors which only appeared when relocating.
author
Ian Lance Taylor
<ian@airs.com>
Tue, 26 Jan 1993 19:51:41 +0000
(19:51 +0000)
committer
Ian Lance Taylor
<ian@airs.com>
Tue, 26 Jan 1993 19:51:41 +0000
(19:51 +0000)
ld/mips.sc-sh
patch
|
blob
|
history
diff --git
a/ld/mips.sc-sh
b/ld/mips.sc-sh
index 3e3ba75d90da4841c50c71187e9104670dd1e263..5d492e1428e7d022ce88645206338d61ae84632e 100644
(file)
--- a/
ld/mips.sc-sh
+++ b/
ld/mips.sc-sh
@@
-22,7
+22,7
@@
SECTIONS
.data ${RELOCATING+ .} : {
*(.data)
}
- ${RELOCATING+ _gp = . + 0x8000
};
+ ${RELOCATING+ _gp = . + 0x8000
;}
.lit8 ${RELOCATING+ .} : {
*(.lit8)
}
@@
-32,7
+32,7
@@
SECTIONS
.sdata ${RELOCATING+ .} : {
*(.sdata)
}
- ${RELOCATING+ edata = .
};
+ ${RELOCATING+ edata = .
;}
.sbss ${RELOCATING+ .} : {
*(.sbss)
}
@@
-40,6
+40,6
@@
SECTIONS
*(.bss)
*(COMMON)
}
- ${RELOCATING+ end = .
};
+ ${RELOCATING+ end = .
;}
}
EOF