Re: Complaint about webpage

2019-07-04 Thread Jim Wilson
On 7/5/19 9:24 AM, Jim Wilson wrote: On 7/4/19 11:08 PM, Christopher Faylor wrote: On Thu, Jul 04, 2019 at 02:44:05PM +0800, Jim Wilson wrote: Yes, I mentioned in another thread that this might be an SEO attempt, and that the right solution is to report them as bad actors to the search

Re: Complaint about webpage

2019-07-04 Thread Jim Wilson
On 7/4/19 11:08 PM, Christopher Faylor wrote: On Thu, Jul 04, 2019 at 02:44:05PM +0800, Jim Wilson wrote: On 7/3/19 8:02 PM, Tara Hamilton wrote: Every time these links show up in an email message they get archived and amplified for posterity. I wonder if that wasn't the actual intent

Re: Complaint about webpage

2019-07-04 Thread Jim Wilson
On 7/3/19 8:02 PM, Tara Hamilton wrote: I’ve just been looking at your website and I came across this webpage: https://gcc.gnu.org/bugzilla/show_bug.cgi?format=multiple=9937 Unfortunately, when I click the link ‘ http://www.cuj.com/experts/2102/sutter.htm,’ it redirects me to a payday loan

Re: bug ? : -Wpedantic -Wconversion 'short a=1; a-=1;' complaint

2018-04-23 Thread Jim Wilson
On 04/23/2018 07:11 AM, Jason Vas Dias wrote: I really do not think a '-Wpedantic -Wconversion' warning should be generated for the following code, but it is (with GCC 6.4.1 and 7.3.1 on RHEL-7.5 Linux) : $ echo ' typedef unsigned short U16_t; static void f(void) { U16_t a = 1;

Re: sanitizer bug maybe.

2017-07-13 Thread Jim Wilson
On 07/10/2017 10:29 AM, George R Goffe via gcc-bugs wrote: ../../../../gcc/libsanitizer/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc: In function ‘int __sanitizer::TracerThread(void*)’: ../../../../gcc/libsanitizer/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc:276:22:

Re: Problem with Factory Generated code g++ 4.x, 5.x, 6.x

2016-12-19 Thread Jim Wilson
On 12/18/2016 12:15 PM, Eduardo Yÿffe1nez via gcc-bugs wrote: >I wish to report a problem with g++ 4.x, g++ 5.x, g++ 6.x. I'm trying >to implement a very classic Factory Method Pattern in C++, I can do it >very easily in MS-Visual C++, but in Linux with g++ the code compiles >but I get

Re: Possible bug with switch when optimization is turned on.

2016-12-07 Thread Jim Wilson
On 12/05/2016 03:24 PM, luke B wrote: The following code seems to be correctly executed when compiled with GCC 4.4.7 and LLVM 6.1. It does not correctly compile with gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.4). I created a bug report and added some info.

Re: 10 x 1036778084 = ??

2016-07-08 Thread Jim Wilson
On 07/07/2016 10:07 PM, Nobby-Hirand wrote: I have just find strange answer, 10 x 1036778084 = 1777846248?? Your target has 32-bit integers. The value 1036778084 is close to the largest representable value. Multiplying by anything larger than 2 causes an overflow, and the result gets

Re: why - warning: array subscript is above array bounds

2015-05-29 Thread Jim Wilson
On 05/28/2015 12:41 PM, 田部 wrote: gcc is, in this code, or put out a warning? -O4 only??? -O3 and higher enables more aggressive loop unrolling. This happens in the pass_complete_unrolli function. With -O3 or higher, the inner loop is unrolled 12 times because the array size is 12. The array

Re: Building newlib-1.15.0 with gcc-4.3.0 for arm-elf

2008-04-14 Thread Jim Wilson
Mariusz Janiak wrote: ../../../../../../../../newlib-1.15.0/newlib/libc/machine/arm/setjmp.S: Assembler messages: ../../../../../../../../newlib-1.15.0/newlib/libc/machine/arm/setjmp.S:123: Error: SP not allowed in register list -- `stmea a1!,{v1-v7,fp,ip,sp,lr}'

Re: can/should autoincrement get optimized away?

2008-04-14 Thread Jim Wilson
John Breitenbach wrote: char can't be less-than zero. However, can't make up my mind as to whether or not it should be allowed to optimize away the post-increment. It is not OK to optimize away the post-increment. This is a gcc optimization bug. Jim

Re: gcc-4.3.0 configure can't identify ld 2.18 version

2008-04-07 Thread Jim Wilson
Yevgeniy Litvinenko wrote: I've found out that two configure scripts can not determine the linker version. These scripts are: gcc-4.3.0/libstdc++-v3/configure and gcc-4.3.0/libgomp/configure We don't track bugs mailed to the gcc-bugs mailing list. File a problem in bugzilla, or ask on

Re: Building GCC-3.2.3 failed on i686-pc-cygwin

2008-03-21 Thread Jim Wilson
se7en_hills wrote: [EMAIL PROTECTED] /cygdrive/f/project/gcc_build $ make all-gcc make.exe: *** No rule to make target `Makefile.in', needed by `Makefile'. Stop. If you look in Makefile, you should find a line that reads something like Makefile: $(srcdir)/Makefile.in ... which means Makefile

Re: Works on dev-c..

2008-03-20 Thread Jim Wilson
beradero wrote: Hello, It's the code: http://www.nabble.com/file/p16128572/1.c 1.c Try enter the number 0010 (number then), 00010, etc.. and see the bizarre output.. Your code is buggy. This is an obvious string overflow problem. You can't fit a 6 character string into a 4 character

Re: Couldn't install GCC properly in my cygwin!

2007-09-14 Thread Jim Wilson
poovizhi wrote: I've CYGWIN_NT-5.0 (1.3.22) version installed in my system. Here I try to install a fresh GCC version (GCC-3.4.6). But I don't have already any compiled version of GCC in my system. If you don't already have a compiler, then you won't be able to compile the gcc sources on your

Re: code block simply not generated

2007-04-09 Thread Jim Wilson
that there is a branch to father. Branches are not supported in asms. This is mentioned in the gcc manual. We can not get control flow correct in this case, and hence can not optimize correctly. -- Jim Wilson, GNU Tools Support, http://www.specifix.com

Re: Bug in g++ 4.1.2 when using inline function definied in cpp file but declared in h file

2007-03-22 Thread Jim Wilson
of the a.cpp file. This way it will be visible in main.cpp when we call it, and then gcc will emit it. Or you can fix it by using pragma implementation and pragma interface as you discovered. I'm not a C++ expert. There may also be other ways to fix this. -- Jim Wilson, GNU Tools Support, http

Re: IEEE Math is not working on Alpha Rawhide

2007-03-22 Thread Jim Wilson
- math on my system? It seems to be a bug, because on Kernel 2.4 I was able to compile the tool. If this worked on a different kernel with the same compiler version, then that indicates a kernel bug. -- Jim Wilson, GNU Tools Support, http://www.specifix.com

Re: gcc bug WRT warning that should not be displayed

2007-03-19 Thread Jim Wilson
smaller than LONG_MIN. Adding casts to long long does not change this fact. -- Jim Wilson, GNU Tools Support, http://www.specifix.com

Re: Bitfield conversion bug in 4.2?

2007-03-19 Thread Jim Wilson
in the tcode == BOOLEAN_TYPE code where we fail to match the conditions due to this inconsistency. I'd suggest opening a bug report. -- Jim Wilson, GNU Tools Support, http://www.specifix.com

Re: Bugzilla administrator

2007-02-19 Thread Jim Wilson
an administrator, send mail to overseers. -- Jim Wilson, GNU Tools Support, http://www.specifix.com

Re: internal compiler error: is this a known problem?

2007-02-01 Thread Jim Wilson
that crosstools already has the patch, so maybe you can get it from there also. -- Jim Wilson, GNU Tools Support, http://www.specifix.com

Re: GCC bug report - Xubuntu kernel compile fails w/gcc bug report request

2007-01-25 Thread Jim Wilson
to a page where you can attach the file to the newly created bug report. This is a bit awkward, yes, but I believe all bugzilla installations work this way. -- Jim Wilson, GNU Tools Support, http://www.specifix.com

Re: Inconsistent floating point result when using G++ 3.3.6 with option -O0 or -O1 separately

2006-07-17 Thread Jim Wilson
. For x86, there are some options that might help, such as -mfpmath=sse. This will only work with recent gcc versions and recent x86 processors, and may take some experimentation. Sometimes -ffloat-store helps. There is a lot of info about this problem in PR 323. -- Jim Wilson, GNU Tools Support

Re: bug report

2006-06-08 Thread Jim Wilson
bash, see the documentation for the ulimit command. If csh, I think it is limits. -- Jim Wilson, GNU Tools Support, http://www.specifix.com

Re: Is this a compiler bug?

2006-02-21 Thread Jim Wilson
precision problem. -- Jim Wilson, GNU Tools Support, http://www.specifix.com

Re: asm outport

2005-12-05 Thread Jim Wilson
about MS Windows programming. -- Jim Wilson, GNU Tools Support, http://www.specifix.com

Re: long function name

2005-11-29 Thread Jim Wilson
space limit, then you might need root access to increase it past this limit. -- Jim Wilson, GNU Tools Support, http://www.specifix.com

Re: Bug in strtof

2005-11-17 Thread Jim Wilson
they are meant for users to define. -- Jim Wilson, GNU Tools Support, http://www.specifix.com

Re: GCC Compiling Problem

2005-11-17 Thread Jim Wilson
. An alternative solution is to avoid building fastjar which may work if this is the only place that is failing. fastjar is only used by java, so you could try configuring without java support if you don't need it, e.g. something like --enable-languages=c,c++ if you only need C and C++ support. -- Jim

Re: PATCH: DWARF2 macinfo-related fixes for gdb and gcc

2005-10-18 Thread Jim Wilson
you won't. -- Jim Wilson, GNU Tools Support, http://www.specifix.com

Re: Compiler bug report

2005-10-18 Thread Jim Wilson
. Gcc version info. A testcase that can reproduce the bug. Etc. See http://gcc.gnu.org/bugs.html for info on how to report bugs. Also, bugs should be reported into our bugzilla bug database instead of emailed to this list. -- Jim Wilson, GNU Tools Support, http://www.specifix.com

Re: IS IT A BUG ????

2005-10-07 Thread Jim Wilson
anything with this bug report. We need to know the gcc version, the target (OS and CPU), the optimization options used, and possibly also other info. Also, bugs should be submitted into bugzilla rather than mailed to the list. -- Jim Wilson, GNU Tools Support, http://www.specifix.com

Re: Typo in gcc/config/kfreebsdgnu.h

2003-12-17 Thread Jim Wilson
had the intended effect. -- Jim Wilson, GNU Tools Support, http://www.SpecifixInc.com 2003-12-17 Santiago Vila [EMAIL PROTECTED] * config/kfreebsdgnu.h (TARGET_OS_CPP_BUILTINS): Rename from TARET_OS_CPP_BUILTINS. Index: kfreebsdgnu.h