Commit 73b8bfe1 by Ralf Wildenhues Committed by Ralf Wildenhues

Replace tabs with spaces in .texi files.

gcc/:
	* doc/extend.texi (Function Attributes, Extended Asm):
	Replace TABs with spaces.
	* doc/md.texi (Standard Names): Likewise.
	* doc/plugins.texi (Plugins): Likewise.

From-SVN: r155264
parent 1588fb31
2009-12-15 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 2009-12-15 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* doc/extend.texi (Function Attributes, Extended Asm):
Replace TABs with spaces.
* doc/md.texi (Standard Names): Likewise.
* doc/plugins.texi (Plugins): Likewise.
* doc/c-tree.texi (Expression trees): Use @itemx for all but * doc/c-tree.texi (Expression trees): Use @itemx for all but
the first item for merged items. the first item for merged items.
* doc/extend.texi (Variable Attributes): Likewise. * doc/extend.texi (Variable Attributes): Likewise.
...@@ -2550,14 +2550,14 @@ void __attribute__ ((interrupt, use_shadow_register_set)) v1 (); ...@@ -2550,14 +2550,14 @@ void __attribute__ ((interrupt, use_shadow_register_set)) v1 ();
void __attribute__ ((interrupt, keep_interrupts_masked)) v2 (); void __attribute__ ((interrupt, keep_interrupts_masked)) v2 ();
void __attribute__ ((interrupt, use_debug_exception_return)) v3 (); void __attribute__ ((interrupt, use_debug_exception_return)) v3 ();
void __attribute__ ((interrupt, use_shadow_register_set, void __attribute__ ((interrupt, use_shadow_register_set,
keep_interrupts_masked)) v4 (); keep_interrupts_masked)) v4 ();
void __attribute__ ((interrupt, use_shadow_register_set, void __attribute__ ((interrupt, use_shadow_register_set,
use_debug_exception_return)) v5 (); use_debug_exception_return)) v5 ();
void __attribute__ ((interrupt, keep_interrupts_masked, void __attribute__ ((interrupt, keep_interrupts_masked,
use_debug_exception_return)) v6 (); use_debug_exception_return)) v6 ();
void __attribute__ ((interrupt, use_shadow_register_set, void __attribute__ ((interrupt, use_shadow_register_set,
keep_interrupts_masked, keep_interrupts_masked,
use_debug_exception_return)) v7 (); use_debug_exception_return)) v7 ();
@end smallexample @end smallexample
@item interrupt_handler @item interrupt_handler
...@@ -5434,9 +5434,9 @@ void doit(void) ...@@ -5434,9 +5434,9 @@ void doit(void)
int i = 0; int i = 0;
asm goto ("mfsr %%r1, 123; jmp %%r1;" asm goto ("mfsr %%r1, 123; jmp %%r1;"
".pushsection doit_table;" ".pushsection doit_table;"
".long %l0, %l1, %l2, %l3;" ".long %l0, %l1, %l2, %l3;"
".popsection" ".popsection"
: : : "r1" : label1, label2, label3, label4); : : : "r1" : label1, label2, label3, label4);
__builtin_unreachable (); __builtin_unreachable ();
label1: label1:
......
...@@ -5189,7 +5189,7 @@ A typical @code{ctrap} pattern looks like ...@@ -5189,7 +5189,7 @@ A typical @code{ctrap} pattern looks like
(define_insn "ctrapsi4" (define_insn "ctrapsi4"
[(trap_if (match_operator 0 "trap_operator" [(trap_if (match_operator 0 "trap_operator"
[(match_operand 1 "register_operand") [(match_operand 1 "register_operand")
(match_operand 2 "immediate_operand")]) (match_operand 2 "immediate_operand")])
(match_operand 3 "const_int_operand" "i"))] (match_operand 3 "const_int_operand" "i"))]
"" ""
"@dots{}") "@dots{}")
......
...@@ -317,7 +317,7 @@ custom attributes. ...@@ -317,7 +317,7 @@ custom attributes.
/* Attribute handler callback */ /* Attribute handler callback */
static tree static tree
handle_user_attribute (tree *node, tree name, tree args, handle_user_attribute (tree *node, tree name, tree args,
int flags, bool *no_add_attrs) int flags, bool *no_add_attrs)
@{ @{
return NULL_TREE; return NULL_TREE;
@} @}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment