diff options
author | Maciej W. Rozycki <macro@imgtec.com> | 2017-05-15 13:02:16 +0100 |
---|---|---|
committer | Maciej W. Rozycki <macro@imgtec.com> | 2017-05-15 13:57:07 +0100 |
commit | a54d5f8bb3eb4772a94779a5d37b644aeee72bca (patch) | |
tree | c74e02d28da25551025911752c7a28541c8ab424 /gas | |
parent | 32035f5151b6ec76af0b62d9db8774b76eddc091 (diff) | |
download | fsf-binutils-gdb-a54d5f8bb3eb4772a94779a5d37b644aeee72bca.zip fsf-binutils-gdb-a54d5f8bb3eb4772a94779a5d37b644aeee72bca.tar.gz fsf-binutils-gdb-a54d5f8bb3eb4772a94779a5d37b644aeee72bca.tar.bz2 |
MIPS/GAS: Update `match_const_int' description
Remove a stale reference to FALLBACK parameter from the description of
`match_const_int', matching commit 1a00e61226b3 ("Remove soft_match"),
<https://sourceware.org/ml/binutils/2013-08/msg00133.html>.
gas/
* config/tc-mips.c (match_const_int): Update description.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-mips.c | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 1c86bf1..5b6c2e0 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,9 @@ 2017-05-15 Maciej W. Rozycki <macro@imgtec.com> + * config/tc-mips.c (match_const_int): Update description. + +2017-05-15 Maciej W. Rozycki <macro@imgtec.com> + * doc/as.texinfo (-mips16, -no-mips16): Refer to `.module mips16' rather than `.set mips16'. (-mmicromips, -mno-micromips): Refer to `.module micromips' and diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index e73b9c9..27ce043 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -4841,8 +4841,7 @@ match_expression (struct mips_arg_info *arg, expressionS *value, /* Try to get a constant expression from the next tokens in ARG. Consume the tokens and return return true on success, storing the constant value - in *VALUE. Use FALLBACK as the value if the match succeeded with an - error. */ + in *VALUE. */ static bfd_boolean match_const_int (struct mips_arg_info *arg, offsetT *value) |