[Bug middle-end/41435] GCC doesn't fold complex int division

2009-09-24 Thread ghazi at gcc dot gnu dot org
--- Comment #2 from ghazi at gcc dot gnu dot org 2009-09-24 07:08 --- Patch posted here: http://gcc.gnu.org/ml/gcc-patches/2009-09/msg01685.html -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41435

[Bug target/41456] New: unrecognized R constraint: R13

2009-09-24 Thread eightdot at hotmail dot com
note on version: the source suggests this bug even exists in trunk as of rev 151996 while compiling: asm volatile (\ "mov.w %1,r0\n\t"\ "mulu.w %2,r0\n\t"\ "adc.w #0,r2\n\t" \ :"=R13" (yyl), "=R02" (yyh) \ :"o"(xxa),"o"(xxb) \ :"a0" ); i get: unrecognized R constrai

[Bug other/39888] TLS emutls not linked to automatically on Darwin

2009-09-24 Thread developer at sandoe-acoustics dot co dot uk
--- Comment #26 from developer at sandoe-acoustics dot co dot uk 2009-09-24 07:46 --- (In reply to comment #24) > I am confused why libgcc_ext needs to be built as 10.4/10.5 versions. Aren't the _ext is versioned - precisely because the symbols included in the OS version changes betwee

[Bug bootstrap/41457] New: [4.5 Regression] Bootstrap failure at revision 152100

2009-09-24 Thread dominiq at lps dot ens dot fr
On powerpc-apple-darwin9 with the changes I will post on pr41405, bootstrap fails with: ... /opt/gcc/darwin_buildw/./prev-gcc/xgcc -B/opt/gcc/darwin_buildw/./prev-gcc/ -B/opt/gcc/gcc4.5w/powerpc-apple-darwin9/bin/ -B/opt/gcc/gcc4.5w/powerpc-apple-darwin9/bin/ -B/opt/gcc/gcc4.5w/powerpc-apple-darwi

[Bug bootstrap/41457] [4.5 Regression] Bootstrap failure at revision 152100

2009-09-24 Thread dominiq at lps dot ens dot fr
--- Comment #1 from dominiq at lps dot ens dot fr 2009-09-24 08:56 --- Created an attachment (id=18643) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=18643&action=view) c-format.i -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41457

[Bug bootstrap/41405] [4.5 Regression] Bootstrap fails on *-apple-darwin* due to revision 151815

2009-09-24 Thread dominiq at lps dot ens dot fr
--- Comment #61 from dominiq at lps dot ens dot fr 2009-09-24 09:05 --- I have followed a path different from the one in comment #58, trying to use -gstrict-dwarf during bootstrap. For that I have made the following changes: diff -uN ../_gcc_clean/config/mh-intel-darwin config/mh-intel-

[Bug testsuite/41444] Typo in gcc/testsuite/gcc.dg/guality/guality.h

2009-09-24 Thread dominiq at lps dot ens dot fr
--- Comment #2 from dominiq at lps dot ens dot fr 2009-09-24 09:10 --- > Patches should be posted to gcc-patches. This is not a patch, it is the best way I have found to describe the PR. Would have it be better to report "gcc/testsuite/gcc.dg/guality/example.c fails on Darwin with In f

[Bug tree-optimization/41428] CCP doesn't fold all comparisons it could

2009-09-24 Thread rguenth at gcc dot gnu dot org
--- Comment #3 from rguenth at gcc dot gnu dot org 2009-09-24 09:16 --- Fixed. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added Status|ASSIGNED

[Bug c/41458] New: Inefficient write of 32 bit value to 16 bit volatile on ARM

2009-09-24 Thread tobias at ringis dot se
GCC from at least 4.1.1, up to and including 4.4.1 generates two redundant bit shift operations when writing a 32 bit value to a 16 bit variable. Example: volatile unsigned short v1; void test1(unsigned x) { v1 = x; } This code generates the following when compiled with "arm-elf-gcc -O2 -S -o

[Bug bootstrap/41405] [4.5 Regression] Bootstrap fails on *-apple-darwin* due to revision 151815

2009-09-24 Thread dominiq at lps dot ens dot fr
--- Comment #62 from dominiq at lps dot ens dot fr 2009-09-24 09:40 --- See also http://gcc.gnu.org/ml/gcc/2009-09/msg00500.html . -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41405

[Bug target/38085] gcc -m64 -pg generates invalid assembler code on Solaris 10/x86

2009-09-24 Thread hailijuan at gmail dot com
--- Comment #4 from hailijuan at gmail dot com 2009-09-24 09:50 --- There is another problem with "gcc -m64 -pg" since 4.4.0, seen from below: # file /import/dr3/i386/gcc-4.4.0/lib/gcc/i386-pc-solaris2.11/4.4.0/amd64/gmon.o /import/dr3/i386/gcc-4.4.0/lib/gcc/i386-pc-solaris2.11/4.4.0/am

[Bug debug/41065] DW_TAG_enumeration_type+DW_TAG_enumerator is sometimes missing

2009-09-24 Thread dodji at gcc dot gnu dot org
--- Comment #5 from dodji at gcc dot gnu dot org 2009-09-24 10:38 --- Fixed in 4_4 and 4_5. -- dodji at gcc dot gnu dot org changed: What|Removed |Added Statu

[Bug fortran/41459] New: Error not printed with -Werror and -fmax-errors=1

2009-09-24 Thread domob at gcc dot gnu dot org
When compiling the following test code: 100 end I get: [/tmp]# gfortran-dev test.f90 test.f90:1.4: 100 1 Warning: Ignoring statement label in empty statement at (1) But with -Werror and -fmax-errors=1: [/tmp]# gfortran-dev test.f90 -fmax-errors=1 -Werror Fatal Error: Error count reac

[Bug middle-end/41357] libgomp build fail

2009-09-24 Thread christian dot joensson at gmail dot com
--- Comment #30 from christian dot joensson at gmail dot com 2009-09-24 11:10 --- Not sure about the status here... but, on this system: Windows XP Pro/SP3 cygwin Intel Core2 Duo t9...@2.80ghz system with packages: binutils 2.19.51-1 2.19.51.20090704 bison

[Bug tree-optimization/41460] New: value-numbering does not handle type-punning in a user-friendly way

2009-09-24 Thread rguenth at gcc dot gnu dot org
value-numbering could turn certain invalid constructs like int b; void f(void) { float a; a = 1; b = *(int*)&a; } into VIEW_CONVERT_EXPRs of the loaded bit-pattern. -- Summary: value-numbering does not handle type-punning in a user- friendly way

[Bug c/41461] New: Regression between gcc 3.4.3 and gcc 3.4.6 for va_list

2009-09-24 Thread stephane dot herve at areva dot com
Problem with va_list argument returned by a fonction with 3.4.6 version of gcc. Works fine with 3.4.3 version. gcc version : --- gcc -v Reading specs from /usr/lib/gcc/x86_64-redhat-linux/3.4.6/specs Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/i

[Bug tree-optimization/41454] [4.4/4.5 Regression] DOM miscompiles gcc.c-torture/execute/990513-1.c at -O2 -fno-tree-vrp

2009-09-24 Thread matz at gcc dot gnu dot org
--- Comment #2 from matz at gcc dot gnu dot org 2009-09-24 12:50 --- dom forgets update_stmt at strategic places. Mine. -- matz at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug c/41461] Regression between gcc 3.4.3 and gcc 3.4.6 for va_list

2009-09-24 Thread rguenth at gcc dot gnu dot org
--- Comment #1 from rguenth at gcc dot gnu dot org 2009-09-24 12:54 --- You can't return va_list by value portably. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added -

[Bug other/39888] TLS emutls not linked to automatically on Darwin

2009-09-24 Thread howarth at nitro dot med dot uc dot edu
--- Comment #27 from howarth at nitro dot med dot uc dot edu 2009-09-24 13:06 --- I don't see why your current patch should present a problem for darwin10. My understanding is that all of the symbols in libgcc-10.5 were moved into libSystem and they are ignored if present in libgcc rega

[Bug bootstrap/41457] [4.5 Regression] Bootstrap failure at revision 152100

2009-09-24 Thread jakub at gcc dot gnu dot org
--- Comment #2 from jakub at gcc dot gnu dot org 2009-09-24 13:08 --- Subject: Bug 41457 Author: jakub Date: Thu Sep 24 13:08:11 2009 New Revision: 152119 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=152119 Log: PR bootstrap/41457 * dwarf2out.c (add_const_value

[Bug target/41424] Optimized x86_64-w64 -O1 -foptimize-sibling-calls binary produces negative effects

2009-09-24 Thread xxcv07 at gmail dot com
--- Comment #8 from xxcv07 at gmail dot com 2009-09-24 13:11 --- vlc's bug. -- xxcv07 at gmail dot com changed: What|Removed |Added Status|UNCONFIRMED

[Bug other/39888] TLS emutls not linked to automatically on Darwin

2009-09-24 Thread howarth at nitro dot med dot uc dot edu
--- Comment #28 from howarth at nitro dot med dot uc dot edu 2009-09-24 13:15 --- Iain, You patch is showing some bit rot against current gcc trunk. Can you upload an updated version that applies cleanly against the current sources? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id

[Bug bootstrap/41405] [4.5 Regression] Bootstrap fails on *-apple-darwin* due to revision 151815

2009-09-24 Thread howarth at nitro dot med dot uc dot edu
--- Comment #63 from howarth at nitro dot med dot uc dot edu 2009-09-24 13:47 --- (In reply to comment #62) > See also http://gcc.gnu.org/ml/gcc/2009-09/msg00500.html . > Dominique, Have you tried current gcc trunk with... http://gcc.gnu.org/ml/gcc-patches/2009-09/msg01686.html I

[Bug middle-end/36143] [4.4/4.5 Regression]: FAIL: g++.dg/tree-ssa/pr19637.C

2009-09-24 Thread rguenth at gcc dot gnu dot org
--- Comment #14 from rguenth at gcc dot gnu dot org 2009-09-24 13:47 --- Subject: Bug 36143 Author: rguenth Date: Thu Sep 24 13:47:26 2009 New Revision: 152122 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=152122 Log: 2009-09-24 Richard Guenther PR tree-optimizatio

[Bug tree-optimization/38747] [4.4/4.5 Regression] Wrong code due to VIEW_CONVERT_EXPR

2009-09-24 Thread rguenth at gcc dot gnu dot org
--- Comment #9 from rguenth at gcc dot gnu dot org 2009-09-24 13:47 --- Subject: Bug 38747 Author: rguenth Date: Thu Sep 24 13:47:26 2009 New Revision: 152122 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=152122 Log: 2009-09-24 Richard Guenther PR tree-optimization/

[Bug tree-optimization/38747] [4.4 Regression] Wrong code due to VIEW_CONVERT_EXPR

2009-09-24 Thread rguenth at gcc dot gnu dot org
--- Comment #10 from rguenth at gcc dot gnu dot org 2009-09-24 13:48 --- Fixed on trunk. Trunk doesn't necessarily handle testcases like this correctly anyway, so I am not considering in backporting the change ATM. -- rguenth at gcc dot gnu dot org changed: What|Rem

[Bug middle-end/36143] [4.4 Regression]: FAIL: g++.dg/tree-ssa/pr19637.C

2009-09-24 Thread rguenth at gcc dot gnu dot org
--- Comment #15 from rguenth at gcc dot gnu dot org 2009-09-24 13:49 --- Fixed on the trunk. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added BugsThisDepe

[Bug fortran/41459] Error not printed with -Werror and -fmax-errors=1

2009-09-24 Thread kargl at gcc dot gnu dot org
--- Comment #1 from kargl at gcc dot gnu dot org 2009-09-24 14:19 --- This is probably related to a difference between gfc_warning and gfc_warning_now. If you look in parse.c, you'll see free-form and fixed-form code behave differently. For fixed-form, no warning is issued. This patch

[Bug rtl-optimization/40987] Wrong optimization with if-conversion

2009-09-24 Thread mikpe at it dot uu dot se
--- Comment #10 from mikpe at it dot uu dot se 2009-09-24 14:38 --- Patch posted for review: http://gcc.gnu.org/ml/gcc-patches/2009-09/msg01655.html -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40987

[Bug bootstrap/41457] [4.5 Regression] Bootstrap failure at revision 152100

2009-09-24 Thread developer at sandoe-acoustics dot co dot uk
--- Comment #3 from developer at sandoe-acoustics dot co dot uk 2009-09-24 15:17 --- (In reply to comment #2) > Subject: Bug 41457 > > Author: jakub > Date: Thu Sep 24 13:08:11 2009 > New Revision: 152119 > > URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=152119 Thanks Jakub!

[Bug ada/41100] [4.4 regression] Unchecked_Deallocation causes wrong free errors

2009-09-24 Thread laurent at guerby dot net
--- Comment #4 from laurent at guerby dot net 2009-09-24 15:51 --- It's not a double free: free is called once but not with the pointer returned by malloc, it is passed for some reason the pointer returned by malloc + 0x10. valgrind detects it when it reports: "Address 0x5b3b040 is 16 b

[Bug ada/41100] [4.4/4.5 regression] Unchecked_Deallocation causes wrong free errors

2009-09-24 Thread laurent at guerby dot net
--- Comment #5 from laurent at guerby dot net 2009-09-24 16:48 --- Same issue on x86_64-linux with gcc version 4.5.0 20090924 (experimental) [trunk revision 152124] (GCC) -- laurent at guerby dot net changed: What|Removed |Added

[Bug fortran/41459] Error not printed with -Werror and -fmax-errors=1

2009-09-24 Thread kargl at gcc dot gnu dot org
--- Comment #2 from kargl at gcc dot gnu dot org 2009-09-24 16:49 --- I have a patch. -- kargl at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unas

[Bug bootstrap/41405] [4.5 Regression] Bootstrap fails on *-apple-darwin* due to revision 151815

2009-09-24 Thread rth at gcc dot gnu dot org
--- Comment #64 from rth at gcc dot gnu dot org 2009-09-24 17:02 --- Subject: Bug 41405 Author: rth Date: Thu Sep 24 17:02:29 2009 New Revision: 152127 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=152127 Log: PR bootstrap/41405 * common.opt: Initialize dwarf_st

[Bug c/41462] New: redundant instructions with long double returned value

2009-09-24 Thread yuri at tsoft dot com
When I compile this function: double f(long double i) {return (i);} with gcc flags -S -O3, I get the assembly below. There are two redundant FPU instructions there. double value is already in FPU after fldt. No need to store it and load it back since difference between double and long double is on

[Bug c/41462] redundant instructions with long double returned value

2009-09-24 Thread yuri at tsoft dot com
--- Comment #1 from yuri at tsoft dot com 2009-09-24 17:25 --- Forgot to mention: 32-bit mode on i586 CPU. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41462

[Bug ada/41100] [4.4/4.5 regression] Unchecked_Deallocation causes wrong free errors

2009-09-24 Thread laurent at guerby dot net
--- Comment #6 from laurent at guerby dot net 2009-09-24 17:44 --- Eric, do you have an idea on what could be wrong here? -gnatDG output looks fine, the bug is present at all optimization level so may be it's gigi? -- laurent at guerby dot net changed: What|Removed

[Bug fortran/41459] Error not printed with -Werror and -fmax-errors=1

2009-09-24 Thread kargl at gcc dot gnu dot org
--- Comment #3 from kargl at gcc dot gnu dot org 2009-09-24 18:35 --- http://gcc.gnu.org/ml/gcc-patches/2009-09/msg01739.html -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41459

[Bug libstdc++/41448] std::sort on std::vector with certain values leads to segfault in the vector destructor

2009-09-24 Thread 4ernov at gmail dot com
--- Comment #7 from 4ernov at gmail dot com 2009-09-24 18:39 --- Is there anything in C++ Standard concerning this case? Maybe it's more preferrable to throw exception or something like this.. Now it seems to make memory leak in the operated vector. The output is like this: *** glibc de

[Bug ada/41100] [4.4/4.5 regression] Unchecked_Deallocation causes wrong free errors

2009-09-24 Thread ebotcazou at gcc dot gnu dot org
--- Comment #7 from ebotcazou at gcc dot gnu dot org 2009-09-24 20:27 --- Investigating. -- ebotcazou at gcc dot gnu dot org changed: What|Removed |Added Assigne

[Bug target/41456] unrecognized R constraint: R13

2009-09-24 Thread dj at gcc dot gnu dot org
--- Comment #1 from dj at gcc dot gnu dot org 2009-09-24 20:40 --- Subject: Bug 41456 Author: dj Date: Thu Sep 24 20:40:36 2009 New Revision: 152144 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=152144 Log: PR target/41456 * config/m32c/m32c.h (REG_CLASS_CONTENTS): Add R13. (re

[Bug target/41456] unrecognized R constraint: R13

2009-09-24 Thread dj at redhat dot com
-- dj at redhat dot com changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |dj at redhat dot com |dot org |

[Bug middle-end/41435] GCC doesn't fold complex int division

2009-09-24 Thread ghazi at gcc dot gnu dot org
--- Comment #3 from ghazi at gcc dot gnu dot org 2009-09-24 20:45 --- Subject: Bug 41435 Author: ghazi Date: Thu Sep 24 20:44:55 2009 New Revision: 152145 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=152145 Log: PR middle-end/41435 * fold-const.c (const_binop):

[Bug other/39888] TLS emutls not linked to automatically on Darwin

2009-09-24 Thread developer at sandoe-acoustics dot co dot uk
--- Comment #29 from developer at sandoe-acoustics dot co dot uk 2009-09-24 20:55 --- Created an attachment (id=18644) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=18644&action=view) updated patch for 4-5 trunk (i) the added .ver files are (as yet) unchanged - so some newer (las

[Bug ada/39944] Incorrect expected file name encoding

2009-09-24 Thread pini at tuxfamily dot org
--- Comment #1 from pini at tuxfamily dot org 2009-09-24 21:32 --- Flag "-gnati8" doesn't mean "utf-8 identifiers" but "IBM PC letters (code page 850) identifiers", as stated in http://gcc.gnu.org/onlinedocs/gnat_ugn_unw/Character-Set-Control.html. Use "-gnatiw -gnatW8" for utf-8 identi

[Bug fortran/41459] Error not printed with -Werror and -fmax-errors=1

2009-09-24 Thread kargl at gcc dot gnu dot org
--- Comment #4 from kargl at gcc dot gnu dot org 2009-09-24 21:53 --- Subject: Bug 41459 Author: kargl Date: Thu Sep 24 21:53:36 2009 New Revision: 152147 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=152147 Log: 2009-09-24 Steven G. Kargl PR fortran/41459 *

[Bug other/39888] TLS emutls not linked to automatically on Darwin

2009-09-24 Thread howarth at nitro dot med dot uc dot edu
the right startup files when linking shared libgcc. /bin/sh ../../../gcc-4.5-20090924/libgcc/../mkinstalldirs ../.././gcc parts="crt3.o crtfastmath.o crtprec32.o crtprec64.o crtprec80.o"; \ for file in $parts; do \

[Bug other/39888] TLS emutls not linked to automatically on Darwin

2009-09-24 Thread developer at sandoe-acoustics dot co dot uk
--- Comment #31 from developer at sandoe-acoustics dot co dot uk 2009-09-24 22:42 --- (In reply to comment #30) >I am getting the build failure on x86_64-apple-darwin10 of... *** No rule to make target > `../../../../gcc-4.5-20090924/libgcc/../gcc/config/i386/darwin-libgcc-e

[Bug middle-end/41463] New: Another get_ref_base_and_extent problem

2009-09-24 Thread jamborm at gcc dot gnu dot org
2/ --disable-multilib Thread model: posix gcc version 4.5.0 20090924 (experimental) (GCC) -- Summary: Another get_ref_base_and_extent problem Product: gcc Version: 4.5.0 Status: UNCONFIRMED Severity: normal Priority: P3

[Bug bootstrap/41395] [4.5 regression] Revision 151800 failed bootstrap

2009-09-24 Thread jamborm at gcc dot gnu dot org
--- Comment #31 from jamborm at gcc dot gnu dot org 2009-09-24 22:53 --- (In reply to comment #29) > Thanks. With the patch fixing the problem described in #24, we get > further when compiling with release checking but run into syntax > errors when compiling stage3 libstc++. This probl

[Bug tree-optimization/41464] New: vector loads are unnecessarily split into high and low loads

2009-09-24 Thread nmiell at comcast dot net
gcc (GCC) 4.4.1 20090725 (Red Hat 4.4.1-2) The testcase (built with -Wall -O3): #include void MulPi(float * __attribute__((aligned(16))) i, float * __attribute__((aligned(16))) f, int n) { for (int j = 0; j < n; j++) f[j] = (float) M_PI * i[j]; } produces the following

[Bug bootstrap/41465] New: bootstrap failed - ../libdecnumber/gstdint.h:80: error: two or more data types in declaration specifiers

2009-09-24 Thread htl10 at users dot sourceforge dot net
svn-r152128 failed make bootstrap4-lean quite early with: (don't worry about the r150353 part below - I had to ftp a diff from one machine to the machine which does the building, so I only transport a diff from an earlier checkout). gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-st

[Bug other/39888] TLS emutls not linked to automatically on Darwin

2009-09-24 Thread howarth at nitro dot med dot uc dot edu
--- Comment #32 from howarth at nitro dot med dot uc dot edu 2009-09-24 23:47 --- Created an attachment (id=18645) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=18645&action=view) build failure on x86_64-apple-darwin10 -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39888

[Bug other/39888] TLS emutls not linked to automatically on Darwin

2009-09-24 Thread howarth at nitro dot med dot uc dot edu
--- Comment #33 from howarth at nitro dot med dot uc dot edu 2009-09-24 23:48 --- Iain, With those missing files added, the build still fails for x86_64-apple-darwin10. I've uploaded the failed build log in case you recognize where the build is going astray. -- http://gcc.gnu.o

[Bug bootstrap/41465] bootstrap failed - ../libdecnumber/gstdint.h:80: error: two or more data types in declaration specifiers

2009-09-24 Thread htl10 at users dot sourceforge dot net
--- Comment #1 from htl10 at users dot sourceforge dot net 2009-09-24 23:51 --- int64_t and uint64_t are both already defined in /usr/include/inttypes.h - it appears that intmax_t and uintmax_t may also be defined elsewhere as well, although I couldn't locate it. -- http://gcc.gnu

[Bug bootstrap/41465] bootstrap failed - ../libdecnumber/gstdint.h:80: error: two or more data types in declaration specifiers

2009-09-24 Thread htl10 at users dot sourceforge dot net
--- Comment #2 from htl10 at users dot sourceforge dot net 2009-09-24 23:56 --- (In reply to comment #1) > int64_t and uint64_t are both already defined in /usr/include/inttypes.h - > it appears that intmax_t and uintmax_t may also be defined elsewhere as well, > although I couldn't lo

[Bug rtl-optimization/40838] gcc shouldn't assume that the stack is aligned

2009-09-24 Thread mikulas at artax dot karlin dot mff dot cuni dot cz
--- Comment #46 from mikulas at artax dot karlin dot mff dot cuni dot cz 2009-09-25 00:56 --- Created an attachment (id=18646) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=18646&action=view) A patch for gcc 4.4.1 I decided to make a patch on my own. Seamonkey works with it. It s

[Bug other/39888] TLS emutls not linked to automatically on Darwin

2009-09-24 Thread howarth at nitro dot med dot uc dot edu
--- Comment #34 from howarth at nitro dot med dot uc dot edu 2009-09-25 01:20 --- Iain, The build on i686-apple-darwin10 is going better but has a glitch. A no time during the different stages of the bootstrap are libgcc_s.10.4.dylib and libgcc_s.10.5.dylib created. For example, in

[Bug other/39888] TLS emutls not linked to automatically on Darwin

2009-09-24 Thread howarth at nitro dot med dot uc dot edu
--- Comment #35 from howarth at nitro dot med dot uc dot edu 2009-09-25 02:19 --- Created an attachment (id=18647) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=18647&action=view) i686-apple-darwin10 build log with patch -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39888

[Bug rtl-optimization/40838] gcc shouldn't assume that the stack is aligned

2009-09-24 Thread hjl dot tools at gmail dot com
--- Comment #47 from hjl dot tools at gmail dot com 2009-09-25 02:31 --- (In reply to comment #46) > Created an attachment (id=18646) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=18646&action=view) [edit] > A patch for gcc 4.4.1 > > I decided to make a patch on my own. Seamonkey

[Bug bootstrap/40894] [4.4/4.5 Regression] bootstrap4-lean failed crtfastmath.o comparision

2009-09-24 Thread htl10 at users dot sourceforge dot net
--- Comment #4 from htl10 at users dot sourceforge dot net 2009-09-25 04:33 --- situation gone worse: make[3]: Leaving directory `/home/htl10/tmp-build/ob-dir' Comparing stages 2 and 3 warning: gcc/cc1-checksum.o differs warning: gcc/cc1plus-checksum.o differs warning: gcc/cc1obj-check

[Bug bootstrap/40894] [4.4/4.5 Regression] bootstrap4-lean failed crtfastmath.o comparision

2009-09-24 Thread htl10 at users dot sourceforge dot net
--- Comment #5 from htl10 at users dot sourceforge dot net 2009-09-25 04:40 --- latest run was with svn-r152154 . also filed new bug 41465 , I just noticed I wrote 'bootstrap-lean' in comment 2 instead of 'bootstrap4-lean' - it is probably not important in light of the new bug and more

[Bug c++/41437] No access control for classes in template functions

2009-09-24 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2009-09-25 04:44 --- I think this is a duplicate of bug 40843. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41437

[Bug bootstrap/41457] [4.5 Regression] Bootstrap failure at revision 152100

2009-09-24 Thread dominiq at lps dot ens dot fr
--- Comment #4 from dominiq at lps dot ens dot fr 2009-09-25 06:34 --- Bootstrapped successfully powerpc-apple-darwin9 at revision 152135. Thanks for the fix. Closing as fixed. -- dominiq at lps dot ens dot fr changed: What|Removed |Added -