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]

[tree-ssa] fix asm indentation


        * tree-pretty-print.c (dump_generic_node): Don't double indent asms.

Index: tree-pretty-print.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/Attic/tree-pretty-print.c,v
retrieving revision 1.1.2.43
diff -u -p -r1.1.2.43 tree-pretty-print.c
--- tree-pretty-print.c	18 Sep 2003 00:19:27 -0000	1.1.2.43
+++ tree-pretty-print.c	18 Sep 2003 22:00:01 -0000
@@ -1209,7 +1209,6 @@ dump_generic_node (pretty_printer *buffe
       break;
 
     case ASM_EXPR:
-      INDENT (spc);
       pp_string (buffer, "__asm__");
       if (ASM_VOLATILE_P (node))
 	pp_string (buffer, " __volatile__");


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