mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-21 18:39:34 +08:00
(Infix Ops): '<' and '>' are not shift operators.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2005-10-03 Arnold Metselaar <arnold.metselaar@planet.nl>
|
||||||
|
|
||||||
|
* doc/as.texinfo (Infix Ops): '<' and '>' are not shift
|
||||||
|
operators.
|
||||||
|
|
||||||
2005-09-30 Bob Wilson <bob.wilson@acm.org>
|
2005-09-30 Bob Wilson <bob.wilson@acm.org>
|
||||||
|
|
||||||
* config/tc-xtensa.c (xtensa_frob_label): Disallow labels in bundles.
|
* config/tc-xtensa.c (xtensa_frob_label): Disallow labels in bundles.
|
||||||
|
@ -3567,12 +3567,10 @@ Highest Precedence
|
|||||||
@item %
|
@item %
|
||||||
@dfn{Remainder}.
|
@dfn{Remainder}.
|
||||||
|
|
||||||
@item <
|
@item <<
|
||||||
@itemx <<
|
|
||||||
@dfn{Shift Left}. Same as the C operator @samp{<<}.
|
@dfn{Shift Left}. Same as the C operator @samp{<<}.
|
||||||
|
|
||||||
@item >
|
@item >>
|
||||||
@itemx >>
|
|
||||||
@dfn{Shift Right}. Same as the C operator @samp{>>}.
|
@dfn{Shift Right}. Same as the C operator @samp{>>}.
|
||||||
@end table
|
@end table
|
||||||
|
|
||||||
@ -3624,11 +3622,11 @@ You may not subtract arguments from different sections.
|
|||||||
@dfn{Is Not Equal To}
|
@dfn{Is Not Equal To}
|
||||||
@item <
|
@item <
|
||||||
@dfn{Is Less Than}
|
@dfn{Is Less Than}
|
||||||
@itemx >
|
@item >
|
||||||
@dfn{Is Greater Than}
|
@dfn{Is Greater Than}
|
||||||
@itemx >=
|
@item >=
|
||||||
@dfn{Is Greater Than Or Equal To}
|
@dfn{Is Greater Than Or Equal To}
|
||||||
@itemx <=
|
@item <=
|
||||||
@dfn{Is Less Than Or Equal To}
|
@dfn{Is Less Than Or Equal To}
|
||||||
|
|
||||||
The comparison operators can be used as infix operators. A true results has a
|
The comparison operators can be used as infix operators. A true results has a
|
||||||
|
Reference in New Issue
Block a user