diff options
author | Nick Clifton <nickc@redhat.com> | 2005-10-03 09:41:06 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2005-10-03 09:41:06 +0000 |
commit | d1eac9d97d2a50f920ecd54af2c97d8ffb9df64e (patch) | |
tree | 98d35600b383a3853c694139ed767e3beec6c171 /gas/doc | |
parent | 65a7a66f3a02426753f47fe598c454d575d7f204 (diff) | |
download | gdb-d1eac9d97d2a50f920ecd54af2c97d8ffb9df64e.zip gdb-d1eac9d97d2a50f920ecd54af2c97d8ffb9df64e.tar.gz gdb-d1eac9d97d2a50f920ecd54af2c97d8ffb9df64e.tar.bz2 |
(Infix Ops): '<' and '>' are not shift operators.
Diffstat (limited to 'gas/doc')
-rw-r--r-- | gas/doc/as.texinfo | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/gas/doc/as.texinfo b/gas/doc/as.texinfo index 6e8ff3d..dfa9cb8 100644 --- a/gas/doc/as.texinfo +++ b/gas/doc/as.texinfo @@ -3567,12 +3567,10 @@ Highest Precedence @item % @dfn{Remainder}. -@item < -@itemx << +@item << @dfn{Shift Left}. Same as the C operator @samp{<<}. -@item > -@itemx >> +@item >> @dfn{Shift Right}. Same as the C operator @samp{>>}. @end table @@ -3624,11 +3622,11 @@ You may not subtract arguments from different sections. @dfn{Is Not Equal To} @item < @dfn{Is Less Than} -@itemx > +@item > @dfn{Is Greater Than} -@itemx >= +@item >= @dfn{Is Greater Than Or Equal To} -@itemx <= +@item <= @dfn{Is Less Than Or Equal To} The comparison operators can be used as infix operators. A true results has a |