Possible Bug with Building on Current Tree

2017-09-24 Thread nick
clean tree which was the fix before. That doesn't find it, either the build is currently broken as it worked yesterday or something is wrong with my config command. Nick

Weird Error with Hashtable Code for Assignment(Maybe Compiler Bug)

2016-11-11 Thread nick
ser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu Thread model: posix gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.4) Huge Thanks for any help, Nick

sh64-elf build failure because of lib1funcs-Os-4-200.asm

2006-05-18 Thread Nick Clifton
? Or maybe the rules in t-sh need to be updated to include an architecture selection switch ? (eg -m2a-single ?) Cheers Nick

Re: sh64-elf build failure because of lib1funcs-Os-4-200.asm

2006-05-19 Thread Nick Clifton
running regressions tests to see if it introduces any new problems. (I doubt that it will, but it never hurts to check). Cheers Nick

Bug building target libiberty for mips64vrel-elf toolchain

2007-03-28 Thread Nick Clifton
} if (mips_tls_operand_p (src)) But I am pretty sure that this is the wrong solution. Since I am not a MIPS expert however I am punting this problem to you guys. :-) Cheers Nick

Re: Bug building target libiberty for mips64vrel-elf toolchain

2007-03-29 Thread Nick Clifton
ff as you guys. I might have time to try a fix this weekend. Please feel free to file a bug report and assign it to [EMAIL PROTECTED] I have created a PR (31388) but I do not have the authority to assign it you. Cheers Nick

GCC testsuite failures for mips64vrel-elf toolchain with -mlong64 -mgp32

2007-04-04 Thread Nick Clifton
n gcc somewhere (that assumes that a long will fit into a register) or whether there is something mips specific about the problem. (One thing telling gcc that a long is 32-bits and another thing tell it that they are 64-bits). What do you think ? Cheers Nick

mips64vrel-elf code gen bug

2007-08-02 Thread Nick Clifton
store_df_high pattern in mips.md. Any clues or solutions ? Cheers Nick 128201-files.tar.bz2 Description: BZip2 compressed data

Fix gcc bootstrap problem

2007-08-20 Thread Nick Clifton
ough it would fail if the alignment power is sufficiently large to cause the left shift to overflow an integer. So I am going to check in a variant of this change: offset &= (bfd_vma)~((1L << s->alignment_power) - 1L); which I think should satisfy everyone. I will also c

RFC: Bogus gimplification type mismatch error ?

2007-08-20 Thread Nick Clifton
uld like to know if the gcc error message is really correct, or if I have run across a gimplification bug. Cheers Nick

Re: RFC: Bogus gimplification type mismatch error ?

2007-08-20 Thread Nick Clifton
this problem and added a comment to PR 22371 mentioning that 33122 might be a duplicate. Cheers Nick

unsigned long long bitfield RTL generation bug (H8 specific ?)

2007-09-21 Thread Nick Clifton
nk. Is this a generic bitfield allocation problem in gcc ? Cheers Nick

[btt] Re: school

2008-09-14 Thread Nick Cocchiarella
Anyone who doesn't hate homework is cr'r'r'r'r'r'r'r'r'r'raz'z'z'zz'z'z'z'z'z'z'z'zy! Nick Cocchiarella Email: [EMAIL PROTECTED], [EMAIL PROTECTED] MSN: [EMAIL PROTECTED] Skype: coo

Gimple ICE for MIPS ports

2008-09-16 Thread Nick Clifton
tdio/vfprintf.c:480: internal compiler error: verify_gimple failed This is from a mips64vr-elf target, but I have the same failure with mipsisa32-elf and mipsisa64-elf targets as well. Cheers Nick

C6X fails to build in FSF mainline

2011-08-16 Thread Nick Clifton
assume that it is because the C6X has more than one delay slot ? Cheers Nick

Help: How to update dataflow info after splitting ?

2011-10-06 Thread Nick Clifton
nal jump pattern, but I am loath to do so because I have found that gcc tends to have issues with jump insns that contain parallels. Any suggestions ? Cheers Nick

AVR fails to build lto1

2011-11-29 Thread Nick Clifton
ate a binutils AVR bug report, but I need a working toolchain). Cheers Nick

Loop invariant code corrupting xstormy16 insn

2007-06-05 Thread Nick Clifton
been looking at the loop invariant code trying to figure out what needs to be changed, but so far I have not been able to puzzle it out. I think that the real problem might be the clobbers in the ineqbranchsi pattern, but I do not know how it could be changed to fix this. Any ideas ? Cheers Nick

Re: Loop invariant code corrupting xstormy16 insn

2007-06-05 Thread Nick Clifton
ux-gnulibc toolchain, so I abandoned it. (I did not investigate why it caused regressions, I just assumed that my approach was wrong). Cheers Nick

libgcc fails to build for sh-elf toolchain

2012-12-16 Thread Nick Clifton
toolchain was building OK at the end of November... Cheers Nick

Infinite recursion in a function called memset

2014-03-26 Thread Nick Clifton
attempt to call a function called "memset" if it is compiling code inside a function called "memset". The problem is, I cannot see an easy way of enforcing this. The memset builtin expander is called from several different places and I am not at all sure how, or if, they should be modified. Any clues ? Cheers Nick

MIPS: va_arg is unable to correct extract an empty zero-length array

2011-03-15 Thread Nick Clifton
e type3 structure in bug.c is given another, non-zero-length field, then the test passes. Cheers Nick #include #include #include typedef int * type1; typedef struct { union u1 { double f1; long int f2; } f3[0]; } type3; typedef int type4; static type1 arg1 = 0; static double arg2 = 1.

Re: MIPS: va_arg is unable to correct extract an empty zero-length array

2011-03-16 Thread Nick Clifton
Hi Richard, + /* Even zero-sized arguments occupy one byte. */ + if (size == 0) + size = 1; That fixes it! Thanks. Will you apply this patch yourself, or should I submit the patch and the test case as a separate email to gcc-patches ? Cheers Nick

G++: Order of static destructors ?

2006-02-12 Thread Nick Clifton
r class B is run, but the destructor for class B is permanently recorded in the .dtors section. Since the exit() function runs the things recorded with atexit() first, before calling _exit() which runs the destructors in the .dtors section, the destructor for A is called before the destructor for B. Can anyone clarify this for me ? Is this a bug with the current G++ implementation ? Cheers Nick

gfortran bug - bad address for reporting bugs plus a bad bug

2006-02-28 Thread Nick Holford
"Please report any bugs to the [EMAIL PROTECTED] mailing-list." I would like to report a real bug when trying to run gfortran on an Athlon processor (See end of this email). Nick <[EMAIL PROTECTED]>: host gcc.gnu.org[209.132.176.174] said: 550 Sorry, there is no mailbox for [EMAIL

RFC; MN10300 binary operators do not work on address registers

2005-06-13 Thread Nick Clifton
work, but I am wary about the AND pattern - it looks like it uses short cuts for certain sizes of integer and I do not know enough about the AM33 ISA to know if these short cuts are valid when address registers are involved. Can you offer any advice ? Is this a reload problem whereby "sp" should be moved into a data register ? Cheers Nick

ia64-elf and i386-elf fail to build

2016-08-25 Thread Nick Clifton
be an attempt to register a builtin type using the float128_type_node, which is NULL for these particular targets: gcc/config/ia64/ia64.c:10373 gcc/config/i386/i386.c:33347 Presumably float128_type_node should not be NULL, but I am not sure how to fix this. Any suggestions ? Cheers Nick

Re: ia64-elf and i386-elf fail to build

2016-08-25 Thread Nick Clifton
nt to get target greping wrong. So - Jan, Uros, Jim, Steve - are these ia64 and i386 backend patches OK ? Cheers Nick gcc/ChangeLog 2016-08-25 Nick Clifton * config/ia64/ia64.c (ia64_init_builtins): Initialise the float128_type_node if that has not been d

Re: ia64-elf and i386-elf fail to build

2016-08-25 Thread Nick Clifton
the type is > not fully supported. You need a different name for the local node, e.g. > i386_float128_type_node (and then update all back-end uses to use the > local node). Oh, OK - new patch in the works. Cheers Nick

[Bug c/20961] New: ICE on pragma weak/__attribute__((weak))

2005-04-11 Thread nick at ilm dot com
y: normal Priority: P2 Component: c AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: nick at ilm dot com CC: gcc-bugs at gcc dot gnu dot org GCC build triplet: x86_64-unknown-linux-gnu GCC host triplet: x86_64-unknown-linux-gnu GCC target triplet: x86_6

[Bug c/20961] ICE on pragma weak/__attribute__((weak))

2005-04-11 Thread nick at ilm dot com
--- Additional Comments From nick at ilm dot com 2005-04-12 02:37 --- I meant to say that it succedes with i686-pc-linux-gnu not x86-unknown-linux-gnu > /dept/rnd/vendor/gcc-4.0.0-20050410/bin/gcc -v Using built-in specs. Target: i686-pc-linux-gnu Configured with: ../gcc-4.0.0-20050

[Bug c++/20961] ICE on pragma weak/__attribute__((weak))

2005-04-11 Thread nick at ilm dot com
--- Additional Comments From nick at ilm dot com 2005-04-12 02:42 --- mislabeled as c - should be c++ compiling as c on x86_64-unknown-linux-gnu succedes compiling as c++ on x86_64-unknown-linux-gnu fails compiling as c on i686-pc-linux-gnu succedes compiling as c++ on i686-pc-linux

[Bug c++/21012] New: [4.0 regression] incorrect name lookup from nested struct

2005-04-13 Thread nick at ilm dot com
signed at gcc dot gnu dot org ReportedBy: nick at ilm dot com CC: gcc-bugs at gcc dot gnu dot org GCC build triplet: x86_64-unknown-linux-gnu GCC host triplet: x86_64-unknown-linux-gnu GCC target triplet: x86_64-unknown-linux-gnu http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21012

[Bug c++/21012] [4.0 regression] incorrect name lookup from nested struct

2005-04-13 Thread nick at ilm dot com
-- What|Removed |Added Keywords||rejects-valid http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21012

[Bug rtl-optimization/14868] ICE with -msse2 -mfpmath=sse -fnon-call-exceptions

2005-04-13 Thread nick at ilm dot com
--- Additional Comments From nick at ilm dot com 2005-04-14 02:15 --- testcase compiles successfuly with gcc-4.0.0-20050410 on x68 and amd64, removed 4.0.0 from known to fail line. -- What|Removed |Added

[Bug rtl-optimization/21169] New: [4.0 regression] ICE in reload_cse_simplify_operands with -fnon-call-exceptions -fPIC -O2

2005-04-22 Thread nick at ilm dot com
Component: rtl-optimization AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: nick at ilm dot com CC: gcc-bugs at gcc dot gnu dot org GCC build triplet: x86_64-unknown-linux-gnu GCC host triplet: x86_64-unknown-linux-gnu GCC target triplet: x86_64-unknown-lin

[Bug c++/19731] New: arguments incorrectly named in static member specialization

2005-01-31 Thread nick at ilm dot com
e function gets instantiated. -nick -- Summary: arguments incorrectly named in static member specialization Product: gcc Version: 3.4.3 Status: UNCONFIRMED Severity: normal Priority: P2 Component: c++

[Bug c++/19731] arguments incorrectly named in static member specialization

2005-01-31 Thread nick at ilm dot com
-- What|Removed |Added Keywords||accepts-invalid, rejects- ||valid http://gcc.gnu.org/bugzilla/s

[Bug c++/19744] New: ICE in if_convert with -fnon-call-exceptions -O2 on amd64

2005-02-01 Thread nick at ilm dot com
amd64 Product: gcc Version: 3.4.3 Status: UNCONFIRMED Severity: normal Priority: P2 Component: c++ AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: nick at ilm dot com CC: gcc

[Bug c++/19744] ICE in if_convert with -fnon-call-exceptions -O2 on amd64

2005-02-01 Thread nick at ilm dot com
-- What|Removed |Added Keywords||ice-on-valid-code http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19744

[Bug ada/17701] Can't crosscompile ada to armv5tel

2005-03-06 Thread nick at sqrt dot co dot uk
--- Additional Comments From nick at sqrt dot co dot uk 2005-03-06 15:51 --- This is a longstanding bug that still occurs for the 4.0 branch. For ARM change: Integer'Min (2, Standard'Maximum_Alignment); to: Integer'Min (4, Standard'Maximum_Alig

[Bug ada/20797] New: Code gen creating out-of-bounds addresses on legit code

2005-04-06 Thread nick at sqrt dot co dot uk
: unassigned at gcc dot gnu dot org ReportedBy: nick at sqrt dot co dot uk CC: gcc-bugs at gcc dot gnu dot org GCC build triplet: i686-pc-linux-gnu GCC host triplet: i686-pc-linux-gnu GCC target triplet: arm-linux-elf http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20797

[Bug c++/35631] New: operator overloads defined as a friend within a class are not always correctly resolved

2008-03-18 Thread nick dot orlov at mail dot ru
correctly resolved Product: gcc Version: 4.1.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: nick dot orlov at mail dot ru http://gcc.gnu.org/bugzilla/show_bug.cgi?id=35631

[Bug c++/35631] operator overloads defined as a friend within a class are not always correctly resolved

2008-03-19 Thread nick dot orlov at mail dot ru
--- Comment #2 from nick dot orlov at mail dot ru 2008-03-19 12:44 --- Standard says: 11.4.6. A function can be defined in a friend declaration of a class if and only if the class is a non-local class (9.8), the function name is unqualified, and the function has namespace scope

[Bug c/36232] New: Optimizer removes condition check to terminate loop

2008-05-13 Thread nick dot spence at freescale dot com
dot gnu dot org ReportedBy: nick dot spence at freescale dot com GCC build triplet: gcc version 4.1.2 20070626 (Red Hat 4.1.2-13) GCC host triplet: i386-redhat-linux GCC target triplet: i386-redhat-linux http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36232

[Bug c/36232] Optimizer removes condition check to terminate loop

2008-05-13 Thread nick dot spence at freescale dot com
--- Comment #1 from nick dot spence at freescale dot com 2008-05-13 19:51 --- Created an attachment (id=15636) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15636&action=view) Example code source file Compile with 'gcc -Os test.c' or 'gcc -O2 test.c'

[Bug c/36232] Optimizer removes condition check to terminate loop

2008-05-13 Thread nick dot spence at freescale dot com
--- Comment #2 from nick dot spence at freescale dot com 2008-05-13 19:52 --- Created an attachment (id=15637) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15637&action=view) Compiler intermediate file -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36232

[Bug c/36232] Optimizer removes condition check to terminate loop

2008-05-13 Thread nick dot spence at freescale dot com
--- Comment #3 from nick dot spence at freescale dot com 2008-05-13 19:56 --- The code has two loops, which compile correctly when no optimization, or -O1 are used, but the second loop becomes infinite if -Os or -O2 is used. .file "test.c"

[Bug c/36232] Optimizer removes condition check to terminate loop

2008-05-13 Thread nick dot spence at freescale dot com
--- Comment #6 from nick dot spence at freescale dot com 2008-05-13 20:41 --- 1) Since most bootloaders are written in C your view is very interesting but probably not shared by everyone else working with embedded software. 2) If the compiler now treats this as an undefined condition

[Bug c/21958] New: verify_stmts reports tree node sharing assertion

2005-06-08 Thread nick at sqrt dot co dot uk
dot gnu dot org ReportedBy: nick at sqrt dot co dot uk CC: gcc-bugs at gcc dot gnu dot org GCC build triplet: i686-pc-linux-gnu GCC host triplet: i686-pc-linux-gnu GCC target triplet: i686-pc-linux-gnu http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21958

[Bug bootstrap/29741] New: Fails to build bootstrap under solaris 10, i386

2006-11-06 Thread nick dot kings at bt dot com
upports_ada=${acx_cv_cc_gcc_supports_ada='no'} acx_cv_prog_LN=${acx_cv_prog_LN='ln'} gcc_cv_prog_cmp_skip=${gcc_cv_prog_cmp_skip='cmp $$f1 $$f2 16 16'} gcc_cv_prog_ln_s_dir=${gcc_cv_prog_ln_s_dir='yes'} -- Summary: Fails to build bootstrap under solaris 10, i386 Product: gcc Version: 4.1.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component: bootstrap AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: nick dot kings at bt dot com http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29741

[Bug c/97687] New: -Wfatal-errors prints some notes but not others

2020-11-02 Thread nick at ludocode dot com via Gcc-bugs
: c Assignee: unassigned at gcc dot gnu.org Reporter: nick at ludocode dot com Target Milestone: --- In file a.c: #define FOO foo typedef int FOO; typedef short FOO; gcc a.c a.c:1:13: error: conflicting types for ‘foo’ 1 | #define FOO foo

[Bug c/35550] New: gcc: Internal error: Segmentation fault (program as)

2008-03-12 Thread nick dot cheng at areca dot com dot tw
Priority: P3 Component: c AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: nick dot cheng at areca dot com dot tw http://gcc.gnu.org/bugzilla/show_bug.cgi?id=35550