summaryrefslogtreecommitdiff
path: root/gas/doc/c-msp430.texi
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2013-01-10 19:51:53 +0000
committerH.J. Lu <hjl.tools@gmail.com>2013-01-10 19:51:53 +0000
commitb1b7556e4d9d72a2a0b05a0408452cce2bb878c2 (patch)
tree0f354dc93d03f43d0ff4bfb5a0a1964aa148ca60 /gas/doc/c-msp430.texi
parent32cf3657a4d3f00cc2c096f01d6151f66ec8a840 (diff)
downloadbinutils-redhat-b1b7556e4d9d72a2a0b05a0408452cce2bb878c2.tar.gz
Remove trailing white spaces on gas
* app.c: Remove trailing white spaces. * as.c: Likewise. * as.h: Likewise. * cond.c: Likewise. * dw2gencfi.c: Likewise. * dwarf2dbg.h: Likewise. * ecoff.c: Likewise. * input-file.c: Likewise. * itbl-lex.h: Likewise. * output-file.c: Likewise. * read.c: Likewise. * sb.c: Likewise. * subsegs.c: Likewise. * symbols.c: Likewise. * write.c: Likewise. * config/tc-i386.c: Likewise. * doc/Makefile.am: Likewise. * doc/Makefile.in: Likewise. * doc/c-aarch64.texi: Likewise. * doc/c-alpha.texi: Likewise. * doc/c-arc.texi: Likewise. * doc/c-arm.texi: Likewise. * doc/c-avr.texi: Likewise. * doc/c-bfin.texi: Likewise. * doc/c-cr16.texi: Likewise. * doc/c-d10v.texi: Likewise. * doc/c-d30v.texi: Likewise. * doc/c-h8300.texi: Likewise. * doc/c-hppa.texi: Likewise. * doc/c-i370.texi: Likewise. * doc/c-i386.texi: Likewise. * doc/c-i860.texi: Likewise. * doc/c-m32c.texi: Likewise. * doc/c-m32r.texi: Likewise. * doc/c-m68hc11.texi: Likewise. * doc/c-m68k.texi: Likewise. * doc/c-microblaze.texi: Likewise. * doc/c-mips.texi: Likewise. * doc/c-msp430.texi: Likewise. * doc/c-mt.texi: Likewise. * doc/c-s390.texi: Likewise. * doc/c-score.texi: Likewise. * doc/c-sh.texi: Likewise. * doc/c-sh64.texi: Likewise. * doc/c-tic54x.texi: Likewise. * doc/c-tic6x.texi: Likewise. * doc/c-v850.texi: Likewise. * doc/c-xc16x.texi: Likewise. * doc/c-xgate.texi: Likewise. * doc/c-xtensa.texi: Likewise. * doc/c-z80.texi: Likewise. * doc/internals.texi: Likewise.
Diffstat (limited to 'gas/doc/c-msp430.texi')
-rw-r--r--gas/doc/c-msp430.texi50
1 files changed, 25 insertions, 25 deletions
diff --git a/gas/doc/c-msp430.texi b/gas/doc/c-msp430.texi
index e5db407623..4beb90a0bf 100644
--- a/gas/doc/c-msp430.texi
+++ b/gas/doc/c-msp430.texi
@@ -30,10 +30,10 @@
@item -m
select the mpu arch. Currently has no effect.
-@item -mP
+@item -mP
enables polymorph instructions handler.
-@item -mQ
+@item -mQ
enables relaxation at assembly time. DANGEROUS!
@end table
@@ -60,7 +60,7 @@ Additional built-in macros are:
@table @code
-@item llo(exp)
+@item llo(exp)
Extracts least significant word from 32-bit expression 'exp'.
@item lhi(exp)
@@ -69,17 +69,17 @@ Extracts most significant word from 32-bit expression 'exp'.
@item hlo(exp)
Extracts 3rd word from 64-bit expression 'exp'.
-@item hhi(exp)
+@item hhi(exp)
Extracts 4rd word from 64-bit expression 'exp'.
@end table
They normally being used as an immediate source operand.
@smallexample
- mov #llo(1), r10 ; == mov #1, r10
+ mov #llo(1), r10 ; == mov #1, r10
mov #lhi(1), r10 ; == mov #0, r10
@end smallexample
-
+
@node MSP430-Chars
@subsection Special Characters
@@ -101,7 +101,7 @@ separated by the @samp{@{} character.
@cindex identifiers, MSP 430
@cindex MSP 430 identifiers
-The character @samp{$} in jump instructions indicates current location and
+The character @samp{$} in jump instructions indicates current location and
implemented only for TI syntax compatibility.
@node MSP430-Regs
@@ -264,43 +264,43 @@ where:
@samp{flags} is a combination of the following characters:
-@item s
+@item s
function entry
-@item x
+@item x
function exit
-@item i
+@item i
function is in init section
-@item f
+@item f
function is in fini section
-@item l
+@item l
library call
-@item c
+@item c
libc standard call
-@item d
+@item d
stack value demand
-@item I
+@item I
interrupt service routine
-@item P
+@item P
prologue start
-@item p
+@item p
prologue end
-@item E
+@item E
epilogue start
-@item e
+@item e
epilogue end
-@item j
+@item j
long jump / sjlj unwind
-@item a
+@item a
an arbitrary code fragment
@item t
extra parameter saved (a constant value like frame size)
@end table
-@item function_to_profile
+@item function_to_profile
a function address
-@item cycle_corrector
+@item cycle_corrector
a value which should be added to the cycle counter, zero if omitted.
-@item extra
+@item extra
any extra parameter, zero if omitted.
@end table
@@ -319,7 +319,7 @@ fxx:
push r8
.profiler "cdpt",fxx,0, .LFrameOffset_fxx ; check stack value at this point
; (this is a prologue end)
- ; note, that spare var filled with
+ ; note, that spare var filled with
; the farme size
mov r15,r8
...