diff options
author | Ian Lance Taylor <iant@google.com> | 2008-02-04 05:43:05 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2008-02-04 05:43:05 +0000 |
commit | a445fddf828b0e8251fbdce91bc9372e7efd24f0 (patch) | |
tree | 6af0ee8254a9432643798126eef663603d92eb08 /gold/yyscript.y | |
parent | d16c732117ed4b752abd51dd1598c9cec9d2b26c (diff) | |
download | gdb-a445fddf828b0e8251fbdce91bc9372e7efd24f0.zip gdb-a445fddf828b0e8251fbdce91bc9372e7efd24f0.tar.gz gdb-a445fddf828b0e8251fbdce91bc9372e7efd24f0.tar.bz2 |
Fully implement the SECTIONS clause.
Diffstat (limited to 'gold/yyscript.y')
-rw-r--r-- | gold/yyscript.y | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gold/yyscript.y b/gold/yyscript.y index 33023dc..a037906 100644 --- a/gold/yyscript.y +++ b/gold/yyscript.y @@ -371,7 +371,8 @@ opt_phdr: | /* empty */ ; -/* The value to use to fill an output section. */ +/* The value to use to fill an output section. FIXME: This does not + handle a string of arbitrary length. */ opt_fill: '=' exp { $$ = $2; } |