This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: [Fwd: ARM GCC inline assembly]
- From: Ian Lance Taylor <ian at wasabisystems dot com>
- To: "Ganesh Tawde" <ganesh dot tawde at patni dot com>
- Cc: gcc-help at gcc dot gnu dot org
- Date: 24 Apr 2004 21:11:13 -0400
- Subject: Re: [Fwd: ARM GCC inline assembly]
- References: <22949.199.92.248.5.1082794983.squirrel@webmail.patni.com>
"Ganesh Tawde" <ganesh.tawde@patni.com> writes:
> I am trying to use the below pure assembly code as inline assembly in C.
> The pure assembly code gives proper data but the inline assembly code
> gives me distorted data. I am not able to figure out the problem. can any
> body help me on this?
Compile with --save-temps, and compare the .s file generated from the
C code to the assembler code which is known to work. Perhaps that
will suggest something.
Ian