diff options
author | Michael Matz <matz@suse.de> | 2023-07-13 17:58:19 +0200 |
---|---|---|
committer | Michael Matz <matz@suse.de> | 2023-07-17 16:59:26 +0200 |
commit | c684d6c4e3cd299f7e10576eafe9e4b86521e3d0 (patch) | |
tree | 1d3cc7b6a70f5bf8262bda9a2a48c062f034d50e /ld/ld.texi | |
parent | b26b06dd42fbd9a75eebb4c943bf55a88562b81f (diff) | |
download | gdb-c684d6c4e3cd299f7e10576eafe9e4b86521e3d0.zip gdb-c684d6c4e3cd299f7e10576eafe9e4b86521e3d0.tar.gz gdb-c684d6c4e3cd299f7e10576eafe9e4b86521e3d0.tar.bz2 |
Also support '^=' in linker script expressions
this requires also changes in ldgram.y and ldexp.c, unlike
accepting '^' only. But let's do this anyway, if only for
symmetry.
Diffstat (limited to 'ld/ld.texi')
-rw-r--r-- | ld/ld.texi | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6832,7 +6832,7 @@ precedence associativity Operators Notes 10 left && 11 left || 12 right ? : -13 right += -= *= /= <<= >>= &= |= (2) +13 right += -= *= /= <<= >>= &= |= ^= (2) (lowest) @end smallexample Notes: @@ -6866,7 +6866,7 @@ height2pt&\omit&&\omit&&\omit&\cr &10&&left&&{\&\&}&\cr &11&&left&&||&\cr &12&&right&&? :&\cr -&13&&right&&\qquad += -= *= /= <<= >>= \&= |=\qquad\ddag&\cr +&13&&right&&\qquad += -= *= /= <<= >>= \&= |= \^{}=\qquad\ddag&\cr &lowest&&&&&\cr height2pt&\omit&&\omit&&\omit&\cr} \hrule} |