Commit e5fed6e6 by Doug Evans

(ASM_OUTPUT_SECTION_NAME): Fix typo.

From-SVN: r6590
parent 545e2d7d
...@@ -929,7 +929,7 @@ switch (get_attr_cc (INSN)) \ ...@@ -929,7 +929,7 @@ switch (get_attr_cc (INSN)) \
This is currently only used to support section attributes. */ This is currently only used to support section attributes. */
#define ASM_OUTPUT_SECTION_NAME(FILE, NAME) \ #define ASM_OUTPUT_SECTION_NAME(FILE, NAME) \
fprintf (FILE, ".section\t\"%s\"\n", NAME) fprintf (FILE, ".section\t%s\n", NAME)
/* This is how to output the definition of a user-level label named NAME, /* This is how to output the definition of a user-level label named NAME,
such as the label on a static function or variable NAME. */ such as the label on a static function or variable NAME. */
......
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