This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH, i386]: Add tabs around .globl directive


Hello!

Makes staring at asm dumps much more pleasant*:

	.text
	.p2align 4,,15
	.globl	main
	.type	main, @function
main:
	...

2010-08-03  Uros Bizjak  <ubizjak@gmail.com>

	* config/i386/unix.h (GLOBAL_ASM_OPS): Add tabs around .globl.

Tested on x86_64-pc-linux-gnu {,-m32}. Committed to mainline SVN.

* Using broad definitions for the word "pleasant".

Uros.

Index: unix.h
===================================================================
--- unix.h	(revision 162854)
+++ unix.h	(working copy)
@@ -67,7 +67,7 @@
 #define BSS_SECTION_ASM_OP "\t.bss"

 /* Globalizing directive for a label.  */
-#define GLOBAL_ASM_OP ".globl "
+#define GLOBAL_ASM_OP "\t.globl\t"

 /* By default, target has a 80387, uses IEEE compatible arithmetic,
    and returns float values in the 387.  */


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]