| Submitter | Uros Bizjak |
|---|---|
| Date | Aug. 4, 2010, 7:04 a.m. |
| Message ID | <AANLkTinjKL8RQRtJsjcw0NsDKxp4id1_138KTcrK7aVT@mail.gmail.com> |
| Download | mbox | patch |
| Permalink | /patch/60828/ |
| State | New |
| Headers | show |
Comments
Patch
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. */
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.