iconv make check failures under ppc

Geoff Keating geoffk@cygnus.com
Sat Sep 9 13:32:00 GMT 2000


> Date: Sat, 09 Sep 2000 14:08:26 -0400
> From: "Kevin B. Hendricks" <kevin.hendricks@sympatico.ca>
> Reply-To: khendricks@ivey.uwo.ca

> -#define PPC_DCBST(where) asm volatile ("dcbst 0,%0" : : "r"(where) : "memory")
> -#define PPC_SYNC asm volatile ("sync" : : : "memory")
> +#define PPC_DCBST(where) asm ("dcbst 0,%0" : : "r"(where) : "memory")
> +#define PPC_SYNC asm ("sync" : : : "memory")
>  #define PPC_ISYNC asm volatile ("sync; isync" : : : "memory")
> -#define PPC_ICBI(where) asm volatile ("icbi 0,%0" : : "r"(where) : "memory")
> +#define PPC_ICBI(where) asm ("icbi 0,%0" : : "r"(where) : "memory")
>  #define PPC_DIE asm volatile ("tweq 0,0")

These changes have no effect.  All 'asm' statements with no outputs
are automatically considered 'volatile'.  Any problems you are seeing
are most likely compiler bugs.

-- 
- Geoffrey Keating <geoffk@cygnus.com>


More information about the Libc-alpha mailing list