This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


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

Re: alpha assembler problem, or CPP problem


On Tue, Oct 31, 2000 at 03:34:26PM +0100, Christian Iseli wrote:
> /usr/src/redhat/BUILD/glibc-build-alpha/csu/crti.S: Assembler messages:
> /usr/src/redhat/BUILD/glibc-build-alpha/csu/crti.S:12: Error: syntax error
[...]
> Line 12 is:
> $call_gmon_start..ng:

Fixed thus.  Ok?


r~


	* cppmain.c (scan_buffer): Don't avoid paste for assembly.

Index: cppmain.c
===================================================================
RCS file: /cvs/gcc/egcs/gcc/cppmain.c,v
retrieving revision 1.38
diff -c -p -d -r1.38 cppmain.c
*** cppmain.c	2000/10/29 07:07:20	1.38
--- cppmain.c	2000/11/01 01:09:06
*************** scan_buffer (pfile)
*** 196,202 ****
  		    putc (' ', print.outf);
  		}
  	    }
! 	  else if (print.printed && ! (token->flags & PREV_WHITE)
  		   && cpp_avoid_paste (pfile, &tokens[1 - index], token))
  	    token->flags |= PREV_WHITE;
  
--- 196,204 ----
  		    putc (' ', print.outf);
  		}
  	    }
! 	  else if (print.printed
! 		   && ! (token->flags & PREV_WHITE)
! 		   && ! CPP_OPTION (pfile, lang_asm)
  		   && cpp_avoid_paste (pfile, &tokens[1 - index], token))
  	    token->flags |= PREV_WHITE;
  

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