Xref: utzoo comp.unix.questions:20903 gnu.gcc:1486 Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!samsung!dali!caesar.cs.montana.edu!mintaka!mit-eddie!ll-xn!rkc From: rkc@XN.LL.MIT.EDU (rkc) Newsgroups: comp.unix.questions,gnu.gcc Subject: gas Message-ID: <1767@xn.LL.MIT.EDU> Date: 27 Mar 90 21:46:27 GMT Organization: MIT Lincoln Laboratory, Lexington, MA Lines: 15 FCC: ~/SMAIL (This may be a repost. Apologies for our mailer.) Awhile back we were using GCC with Sun's assembler. At that time I had written the following copy code: asm volatile("tstl %4;jle 1$;subqw #1,%4; 0$: movel %1@+,%0@+; dbf %4,0$;1$:" : "=a" (p_to), "=a" (p_from) : "0" (p_to), "1" (p_from), "d" (n_longs) ); Now we have converted to Gas (Gnu's assembler), which doesn't seem to understand the 0$ construct. Can someone point me to some documentation on gas and how to create these local variables, or perhaps point me to a correct newsgroup to mail this to. Thanks, -Rob