RE: A case exposing code sink issue

2011-11-25 Thread Michael Matz
Hi, On Thu, 24 Nov 2011, Jiangning Liu wrote: > One more question... > > Can " i = i.6_18;" be sinked out of loop, because it doesn't have memory > dependence with others? With current trunk the stores to i, a_p, b_p and k are sunken after the loop. (There are no aliasing problems because the

Defining symvers without using asm()

2011-11-25 Thread Jan Engelhardt
Hi. from the ld.info manual: """ [...] the ability to bind a symbol to a version node in the source file where the symbol is defined instead of in the versioning script. This was done mainly to reduce the burden on the library maintainer. You can do this by putting something like: __as

gcc-4.6-20111125 is now available

2011-11-25 Thread gccadmin
Snapshot gcc-4.6-2025 is now available on ftp://gcc.gnu.org/pub/gcc/snapshots/4.6-2025/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 4.6 SVN branch with the following options: svn://gcc.gnu.org/svn/gcc/branches

error linking lto1 for target avr

2011-11-25 Thread Sean D'Epagnier
I have the latest gcc from svn, and with "configure --target=avr --enable-languages=c": When building with "make" eventually I get: gcc -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-a

Re: Defining symvers without using asm()

2011-11-25 Thread Ian Lance Taylor
Jan Engelhardt writes: > from the ld.info manual: > > """ [...] the ability to bind a symbol to a version node in the source > file where the symbol is defined instead of in the versioning script. > This was done mainly to reduce the burden on the library maintainer. > You can do this by put

At which pass thing goes wrong for PR43491?

2011-11-25 Thread Amker.Cheng
Hi, I looked into PR43491 a while and found in this case the gimple generated before pre is like: reg.0_12 = reg ... c() reg.0_1 = reg D.xxx = MEM[reg.0_1 + 8B] The pre pass transforms it into: reg.0_12 = reg ... c() reg.0_1 = reg.0_12 D.xxx = MEM[reg.0_1 + 8B] >From now on, following passes(li