public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/39620]  New: wrong assumption of clobbered registers of inline assembly
@ 2009-04-03  7:55 codemasterhs at yahoo dot de
  2009-04-03  8:11 ` [Bug c/39620] " jakub at gcc dot gnu dot org
  2009-04-03  8:30 ` codemasterhs at yahoo dot de
  0 siblings, 2 replies; 3+ messages in thread
From: codemasterhs at yahoo dot de @ 2009-04-03  7:55 UTC (permalink / raw)
  To: gcc-bugs

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1041 bytes --]

I have the following code:

static inline void zeromem4b(uint32t *dst, uint32t count) {
        asm volatile("xor %%eax,%%eax\n\trep stosl"
                :
                :"c"(count),"D"(dst)
                :"%eax", "cc", "memory");
}

If I call it and after it want to, e.g. print out the value of *dst it gives me
the value which it has after running the function. That means that gcc thinks
that "%edi" hasn´t changed, but it did and I can not put it into the clobbered
list, because this gives me an error.

I compile with "-O2 -Wall -fno-builtin -march=i586".


-- 
           Summary: wrong assumption of clobbered registers of inline
                    assembly
           Product: gcc
           Version: 4.3.3
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: codemasterhs at yahoo dot de
  GCC host triplet: cygwin
GCC target triplet: i586 elf


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39620


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-04-03  8:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-04-03  7:55 [Bug c/39620] New: wrong assumption of clobbered registers of inline assembly codemasterhs at yahoo dot de
2009-04-03  8:11 ` [Bug c/39620] " jakub at gcc dot gnu dot org
2009-04-03  8:30 ` codemasterhs at yahoo dot de

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).