Re: restrict and char pointers

2005-05-04 Thread Jeroen Dobbelaere
; alias set for the type pointed to by the type of the > decl. */ [..] >From what I found on these pages I refered to, this could be made more strict : accesses through restricted pointers would not interfere with other accesses, which would allow some more aggressive optimizations. Greetings, -- Jeroen Dobbelaere

Re: restrict and char pointers

2005-05-04 Thread Jeroen Dobbelaere
finition' conflict with the standards definition ?? Greetings, -- Jeroen Dobbelaere

restrict and char pointers

2005-05-04 Thread Jeroen Dobbelaere
l(%eax), %ecx movb$0, (%edx) movl%ecx, (%eax) ret I would expect that the second case compiles to : movl8(%esp), %edx movb$0, (%edx) ret Greetings, -- Jeroen Dobbelaere