Re: Using DejaGNU on GCC's Testsuite

2012-08-21 Thread Andreas Schwab
it? Only c-torture tests normally do that. What does the testuite log file says for that test? Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely different.

Re: Using DejaGNU on GCC's Testsuite

2012-08-21 Thread Andreas Schwab
-runtest (and never did). Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely different.

Re: --with-gmp, --with-mpfr and/or --with-mpc

2012-09-22 Thread Andreas Schwab
http://www.catb.org/esr/faqs/smart-questions.html Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely different.

Question about insn predicates and constraints

2012-09-29 Thread Andreas Schwab
was nonimmediate_operand, thus the mode_dependent_address_p check made sense.) Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely different.

Re: Question about insn predicates and constraints

2012-09-30 Thread Andreas Schwab
I really want to find out is the motivation for the original changes in revision 11511. There are similar problems left in vax.md, btw. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely

Re: Questions about the dg-do directive

2012-10-16 Thread Andreas Schwab
the # compile/assemble/link/run field. Nor does it make any sense to have # multiple lines of target selectors (use one line). Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely different.

Re: -fPIC -fPIE

2012-11-22 Thread Andreas Schwab
Richard Earnshaw rearn...@arm.com writes: -- namely one to restore the state to standard (not pic or pie). -fno-pic -fno-pie Andreas. -- Andreas Schwab, SUSE Labs, sch...@suse.de GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7 And now for something completely

Re: Bootstrap broken on powerpc64-unknown-linux-gnu aliased to undefined symbol (in definition of macro '_GLIBCXX_LDBL_COMPAT')

2012-12-04 Thread Andreas Schwab
Steven Bosscher stevenb@gmail.com writes: Looks like someone used a broken editor replacing tabs with spaces: Rather the other way round. Andreas. -- Andreas Schwab, SUSE Labs, sch...@suse.de GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7 And now for something

Re: Bootstrap broken on powerpc64-unknown-linux-gnu aliased to undefined symbol (in definition of macro '_GLIBCXX_LDBL_COMPAT')

2012-12-04 Thread Andreas Schwab
Steven Bosscher stevenb@gmail.com writes: Fixed with http://gcc.gnu.org/viewcvs?view=revisionrevision=194152 I think if you had changed spacetab to tabspace it would have a better chance to survive broken editors. Andreas. -- Andreas Schwab, SUSE Labs, sch...@suse.de GPG Key fingerprint

Re: Bootstrap broken on powerpc64-unknown-linux-gnu aliased to undefined symbol (in definition of macro '_GLIBCXX_LDBL_COMPAT')

2012-12-04 Thread Andreas Schwab
$@ -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely different.

Re: contrib/test_summary mail error

2013-01-04 Thread Andreas Schwab
it is only used by the produced shell code. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely different.

Re: stabs support in binutils, gcc, and gdb

2013-01-12 Thread Andreas Schwab
David Taylor dtay...@emc.com writes: {As to what d90f.elf is -- that's unimportant; but, it's the kernel for one of the boards in one of our hardware products.] Is it an optimized or an unoptimized build? Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53

Re: stabs support in binutils, gcc, and gdb

2013-01-14 Thread Andreas Schwab
variables. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely different.

Re: not-a-number's

2013-01-16 Thread Andreas Schwab
Mischa Baars mjbaars1...@gmail.com writes: Furthermore, since 'fxam' will return a 'non-comparable' during the first compare, I suppose the function should then enter the first 'else' and return a '4'. Non-comparable means that NaN != NaN is always true. Andreas. -- Andreas Schwab, SUSE

Re: not-a-number's

2013-01-16 Thread Andreas Schwab
. That is only true for arithmethic operations. A comparison always evaluates to true or false. Andreas. -- Andreas Schwab, SUSE Labs, sch...@suse.de GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7 And now for something completely different.

Re: not-a-number's

2013-01-16 Thread Andreas Schwab
an exception). That will only work with SNaN, and only for input operands, since the FPU will never generate SNaN on its own. Andreas. -- Andreas Schwab, SUSE Labs, sch...@suse.de GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7 And now for something completely different.

Re: not-a-number's

2013-01-17 Thread Andreas Schwab
point compares always use the unordered instruction (fcmpu) and never the ordered one (fcmpo), so exceptions flags are never set. The C standard does not place any requirement on wrt. exceptions or lack thereof. Andreas. -- Andreas Schwab, SUSE Labs, sch...@suse.de GPG Key fingerprint = 0196

Re: not-a-number's

2013-01-17 Thread Andreas Schwab
Andreas Schwab sch...@suse.de writes: The C standard does not place any requirement on wrt. exceptions or lack thereof. But IEC 559 does, of course. Andreas. -- Andreas Schwab, SUSE Labs, sch...@suse.de GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7 And now

Re: make check stops after one case in asan.exp

2013-01-19 Thread Andreas Schwab
Bin.Cheng amker.ch...@gmail.com writes: ERROR: (DejaGnu) proc lreverse {{ASAN_OPTIONS 0}} does not exist. What is the version of tcl you are using? Perhaps it doesn't know about lreverse yet (which was added in tcl-8.5). Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint

Re: libatomic multilib testing

2013-01-23 Thread Andreas Schwab
Steve Ellcey sell...@mips.com writes: Additionally, when the testing is finished I exit with a 'Error 2', but I think most testing, even when there are problems, should exit with '0'. No, that has never been the case. Run make with -k. Andreas. -- Andreas Schwab, SUSE Labs, sch...@suse.de

Re: 32 bit pointers on a 64 bit system

2013-03-06 Thread Andreas Schwab
David McQuillan d...@fano.co.uk writes: Have there been any implementations of gcc for a 32 bit pointer system where the registers are 64 bits long? x32. Andreas. -- Andreas Schwab, SUSE Labs, sch...@suse.de GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7 And now

Re: BImode and STORE_VALUE_FLAG

2013-05-07 Thread Andreas Schwab
Paulo Matos pma...@broadcom.com writes: So I guess the problem (which might not be a problem after all can't be reproduced in m68k and it's fine. I don't think m68k is using BImode anywhere. Andreas. -- Andreas Schwab, SUSE Labs, sch...@suse.de GPG Key fingerprint = 0196 BAD8 1CE9 1970

Re: BImode and STORE_VALUE_FLAG

2013-05-08 Thread Andreas Schwab
Paulo Matos pma...@broadcom.com writes: I haven't tried to run it in m68k-linux since I don't have binutils-m68k installed but I assume it will print something like: -1 != ((2 = 2 ? -1 : 0) and return exit code 1. I'm getting 1 != ((2 = 2 ? -1 : 0) with 4.7.3. Andreas. -- Andreas Schwab

Re: BImode and STORE_VALUE_FLAG

2013-05-08 Thread Andreas Schwab
Paulo J. Matos pa...@matos-sorge.com writes: As I expected. That doesn't sound good In which way is it not good? Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely different.

Re: BImode and STORE_VALUE_FLAG

2013-05-08 Thread Andreas Schwab
Paulo J. Matos pa...@matos-sorge.com writes: Shouldn't we expect ires to be -1 (STORE_FLAG_VALUE) ??? Boolean expressions in C evaluate to 0/1. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something

Re: BImode and STORE_VALUE_FLAG

2013-05-09 Thread Andreas Schwab
Paulo J. Matos pa...@matos-sorge.com writes: Further to this matter, can you explain the reasoning behind vector-compare-1.c? Vector comparisons are different. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now

Re: [C++14] Admit C++ keywords as literal suffixes.

2013-06-18 Thread Andreas Schwab
Ed Smith-Rowland 3dw...@verizon.net writes: constexpr complexfloat operator if(); According to 2.14.8#10 this is ill-formed. Andreas. -- Andreas Schwab, SUSE Labs, sch...@suse.de GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7 And now for something completely

Re: build error in libgcc

2013-06-21 Thread Andreas Schwab
… If someone knows where to add just the right one… I ask, because there doesn't seem to be a single .h dependency anywhere… The right way is to let the compiler do it. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5

Re: build error in libgcc

2013-06-22 Thread Andreas Schwab
Chung-Ju Wu jasonw...@gmail.com writes: clean: - -rm -f auto-target.h libgcc_tm.h libgcc.map + -rm -f libgcc_tm.h libgcc.map -rm -f libgcc_tm.stamp stamp-h stmp-ldirs Same for stamp-h. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7

Re: Git mirror: asan branch

2013-07-02 Thread Andreas Schwab
together. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely different.

Re: fatal error: gnu/stubs-32.h: No such file

2013-07-06 Thread Andreas Schwab
Bruce Korb bruce.k...@gmail.com writes: Why is it that configure worked but stubs-32.h was not found? This is testing the host compiler which doesn't need that file. You need to build the target compiler before you can test it. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key

Re: Porting from old to new GCC versions

2013-07-10 Thread Andreas Schwab
compiler version. Is there any documentation (except ChangeLog which doesn't say much) available for these kind of patches? I think the commit that introduced the poisoning is a good source. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5

Re: [c++] Question about write_unscoped_name (const tree decl)

2013-07-29 Thread Andreas Schwab
the revertion, and when r153768 reintroduced it it was apparently modeled after r153734 instead of the state before r149964. Andreas. -- Andreas Schwab, SUSE Labs, sch...@suse.de GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7 And now for something completely different.

Re: fatal error: gnu/stubs-32.h: No such file

2013-08-14 Thread Andreas Schwab
Alexandre Oliva aol...@redhat.com writes: FWIW, that patch was removed at a later point, for reasons I no longer recall. See http://gcc.gnu.org/ml/gcc-patches/2007-11/msg01693.html. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5

Re: New testsuite warnings: mkdir: plugin: File exists

2013-08-19 Thread Andreas Schwab
. That's nothing to worry about, it's just executing three instances of mkdir with the same directory in parallel. One succeeded, the other two failed. Andreas. -- Andreas Schwab, SUSE Labs, sch...@suse.de GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7 And now

Re: GCC internals conditional execution macro?

2013-09-16 Thread Andreas Schwab
the now empty section. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely different.

Re: possible gcc bug?

2013-09-21 Thread Andreas Schwab
operator expected Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely different.

Re: Adding all SVN branches to git tree

2013-10-23 Thread Andreas Schwab
Andi Kleen a...@firstfloor.org writes: - Any chance to add all branches from SVN to the standard git mirror? Actually they are already there, in refs/remotes/google, though they are awkwardly lumped together in a single tree. Andreas. -- Andreas Schwab, SUSE Labs, sch...@suse.de GPG Key

Re: Adding all SVN branches to git tree

2013-10-23 Thread Andreas Schwab
Andi Kleen a...@firstfloor.org writes: It would be still far easier if all these branches became normal git branches. Is there any reason this is not done? You would have to set it up manually, for each and every branch. Andreas. -- Andreas Schwab, SUSE Labs, sch...@suse.de GPG Key

Re: gcc/configure handling $host == $target but different $build

2013-10-24 Thread Andreas Schwab
Robert Schiele rschi...@gmail.com writes: Let's further assume my build system has sys/sdt.h, while my target does not. I think the check for sys/sdt.h should be moved to libgcc where it is actually used (it predates the complete migration of libgcc out of gcc). Andreas. -- Andreas Schwab

Re: Warning about __DATE__ and __TIME__

2013-10-27 Thread Andreas Schwab
; +case OPT_Wdate_time: + gfc_cpp_option.warn_date_time = value; + break; Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely different.

Re: Git mirror: asan branch

2013-10-29 Thread Andreas Schwab
should expect to see? If you want to recreate the git repo at git://gcc.gnu.org/git/gcc.git you need to make sure to use the same git-svn-id embedded in the commit messages. Andreas. -- Andreas Schwab, SUSE Labs, sch...@suse.de GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA

Re: Why aren't installed binaries stripped?

2013-10-30 Thread Andreas Schwab
FX fxcoud...@gmail.com writes: When GCC is installed using “make install”, why aren’t some of the installed binaries stripped? make install-strip Andreas. -- Andreas Schwab, SUSE Labs, sch...@suse.de GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7 And now

Re: Architecture maintainers: please define TARGET_ATOMIC_ASSIGN_EXPAND_FENV

2013-11-08 Thread Andreas Schwab
should fix that first as it indicates a more serious issue with atomic operations on your target. All of the tests require sync_long_long_runtime, so they are currently useless. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276

Re: Architecture maintainers: please define TARGET_ATOMIC_ASSIGN_EXPAND_FENV

2013-11-08 Thread Andreas Schwab
Joseph S. Myers jos...@codesourcery.com writes: On Fri, 8 Nov 2013, Andreas Schwab wrote: Joseph S. Myers jos...@codesourcery.com writes: The test gcc.dg/atomic/c11-atomic-exec-5.c will indicate if this is working correctly for your architecture, as long as your system supports

Re: No git tag for GCC 4.8.2

2013-12-10 Thread Andreas Schwab
H.J. Lu hjl.to...@gmail.com writes: There are git tags for GCC 4.8.0 and 4.8.1. But git tag for GCC 4.8.2 is missing. Fixed. Andreas. -- Andreas Schwab, SUSE Labs, sch...@suse.de GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7 And now for something completely

Re: Regression [v850,mep...]: sign_extend in loop breaks zero-overhead loop generation

2014-01-30 Thread Andreas Schwab
? Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely different.

Re: Regression [v850,mep...]: sign_extend in loop breaks zero-overhead loop generation

2014-01-30 Thread Andreas Schwab
. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely different.

Re: gcc generated long read out of bounds segfault

2014-02-21 Thread Andreas Schwab
David Fries da...@fries.net writes: The attached program sets up and reads through the array with extra padding at the of the array from 8 bytes to 0 bytes. Padding from 4 to 0 crashes. This program has undefined behaviour because you are using unaligned pointers. Andreas. -- Andreas

Re: gcc generated long read out of bounds segfault

2014-02-22 Thread Andreas Schwab
David Fries da...@fries.net writes: The structure is only made up of an 8 bit type char, and it is aligned to a multiple of the struct rgb data size which is 3. How is that unaligned? Sorry, I've miscomputed the alignment. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key

Re: gcc-4.9: How to generate Makefile.in from a modified Makefile.am?

2014-03-26 Thread Andreas Schwab
:27: the top level autom4te: /usr/bin/m4 failed with exit status: 1 Andreas. -- Andreas Schwab, SUSE Labs, sch...@suse.de GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7 And now for something completely different.

Re: Builtin: stack pointer

2014-03-27 Thread Andreas Schwab
it) and is only meant to replace the construct above. Can't you use __builtin_frame_address (0) instead? Andreas. -- Andreas Schwab, SUSE Labs, sch...@suse.de GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7 And now for something completely different.

Re: Builtin: stack pointer

2014-03-27 Thread Andreas Schwab
Renato Golin renato.go...@linaro.org writes: On 27 March 2014 10:12, Andreas Schwab sch...@suse.de wrote: Can't you use __builtin_frame_address (0) instead? That would give me the frame pointer, not the stack pointer, and the user would have to calculate manually the offset to get the actual

Re: Write test case for libstdc++ with C source

2014-04-27 Thread Andreas Schwab
Sebastian Huber sebastian.hu...@embedded-brains.de writes: Since I am not an expert in the GCC test suite scripts, is it possible to add such a test case at all with a moderate amount of work? Just add load_gcc_lib gcc-defs.exp. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key

Re: Write test case for libstdc++ with C source

2014-04-27 Thread Andreas Schwab
Sebastian Huber sebastian.hu...@embedded-brains.de writes: Is it possible to add a search path to something and avoid this load_gcc_lib? Just follow the numerous examples that get it right. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756

Re: [GSoC] writing test-case

2014-05-11 Thread Andreas Schwab
to appear unquoted to the regexp engine, so a single backslash will do the Right Thing. See tcl(n) for the tcl parsing rules. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely different.

Re: GCC driver to Compile twice, score the assembly, choose the best?

2014-05-15 Thread Andreas Schwab
Ian Bolton ian.bol...@arm.com writes: I was wondering if the gcc driver could be made to invoke cc1 twice, with different flags, and then just keep the better of the two .s files that comes out? How do you define better? Andreas. -- Andreas Schwab, SUSE Labs, sch...@suse.de GPG Key

Re: [GSoC] writing test-case

2014-05-15 Thread Andreas Schwab
Prathamesh Kulkarni bilbotheelffri...@gmail.com writes: +/* { dg-final { scan-tree-dump gimple_match_and_simplified to \[^\n\r\]*= x_\\d\+\\(D\\) - y_\\d\+\\(D\\) forwprop1 } } */ No need to quote +, it's not special to tcl. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key

Re: FloatingPointMath and transformations

2014-06-02 Thread Andreas Schwab
Jakub Jelinek ja...@redhat.com writes: If C is a power of two, then 1.0 / C should IMHO never overflow, It does if C is subnormal. Andreas. -- Andreas Schwab, SUSE Labs, sch...@suse.de GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7 And now for something completely

Re: [PATCH] tell gcc optimizer to never introduce new data races

2014-06-16 Thread Andreas Schwab
Dan Carpenter dan.carpen...@oracle.com writes: Adding --param allow-store-data-races=0 to the GCC options for the kernel breaks C=1 because Sparse isn't expecting a GCC option with that format. Please try --param=allow-store-data-races=0 instead. Andreas. -- Andreas Schwab, SUSE Labs, sch

Re: build/genmodes: config/i386/i386-modes.def:25: (TF) field format must not be set

2014-07-09 Thread Andreas Schwab
-1821' gmake: *** [bootstrap-lean] Error 2 This is probably broken everywhere, happens even on ia64. Andreas. -- Andreas Schwab, SUSE Labs, sch...@suse.de GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7 And now for something completely different.

Re: GCC version bikeshedding

2014-07-21 Thread Andreas Schwab
Andi Kleen a...@firstfloor.org writes: Sounds like a bad idea, as then there would be non unique gcc versions. redhat gcc 5.0.2 potentially being completely different from suse gcc 5.0.2 How is that different from now? Andreas. -- Andreas Schwab, SUSE Labs, sch...@suse.de GPG Key

Re: GCC version bikeshedding

2014-07-22 Thread Andreas Schwab
. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely different.

Re: GCC version bikeshedding

2014-07-22 Thread Andreas Schwab
Richard Sandiford rdsandif...@googlemail.com writes: Andreas Schwab sch...@linux-m68k.org writes: Richard Sandiford rdsandif...@googlemail.com writes: So if x.y.z is __GNU__.__GNU_MINOR__.__GNU_PATCHLEVEL__ then the positions in the number stay the same but the meanings of __GNU_MINOR__

Re: GCC version bikeshedding

2014-07-23 Thread Andreas Schwab
Ian Lance Taylor i...@google.com writes: At the same time, we face the fact that going from 4.9 to 4.10 will break some people's existing scripts, as is also true of any other decision we can make. Looking forward to gcc 10.0. :-) Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key

Re: GCC version bikeshedding

2014-07-26 Thread Andreas Schwab
pins...@gmail.com writes: On Jul 23, 2014, at 9:51 AM, Andreas Schwab sch...@linux-m68k.org wrote: Ian Lance Taylor i...@google.com writes: At the same time, we face the fact that going from 4.9 to 4.10 will break some people's existing scripts, as is also true of any other decision we

Re: GCC version bikeshedding

2014-07-26 Thread Andreas Schwab
NightStrike nightstr...@gmail.com writes: On Jul 26, 2014 9:26 AM, Andreas Schwab sch...@linux-m68k.org wrote: pins...@gmail.com writes: On Jul 23, 2014, at 9:51 AM, Andreas Schwab sch...@linux-m68k.org wrote: Ian Lance Taylor i...@google.com writes: At the same time, we face

Re: GCC version bikeshedding

2014-07-26 Thread Andreas Schwab
Steven Bosscher stevenb@gmail.com writes: Cut the major version number. Solaris 2.9 was marketed as Solaris 9. Likewise for Solaris 2.10 and 2.11. They simply dropped the 2 from the version number Which has nothing to do with gcc. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG

Re: GCC version bikeshedding

2014-07-29 Thread Andreas Schwab
incremented more often. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely different.

Re: push_rounding vs memcpy vs stack_pointer_delta

2014-08-29 Thread Andreas Schwab
seen this assertion fail. But it doesn't pass arguments in registers. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely different.

Re: Account creation disabled on GCC Bugzilla

2014-09-02 Thread Andreas Schwab
. -- Andreas Schwab, SUSE Labs, sch...@suse.de GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7 And now for something completely different.

Re: Spam again

2014-09-02 Thread Andreas Schwab
Frédéric Buclin lpso...@netscape.net writes: All of them asked for a @wowring.ru account. If some of you want to play with these IP ranges, I would be curious to know where they are coming from. Maybe Russia? They come from all over Europe. Andreas. -- Andreas Schwab, sch...@linux-m68k.org

Re: stack_pointer_delta related ICE in libgcc on 4.9.1

2014-09-03 Thread Andreas Schwab
instruction per http://www.freescale.com/files/dsp/doc/ref_manual/CFPRM.pdf On Linux it uses a kernel helper for atomic operations. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely different.

Re: Definition of the Host, Target and Build fields in Bugzilla

2014-09-14 Thread Andreas Schwab
Frédéric Buclin lpso...@netscape.net writes: Could one of you give me a short and clear description of each of the Host, Target and Build fields used in GCC Bugzilla? It's the same as what you pass to configure as --build, --host, --target. Andreas. -- Andreas Schwab, sch...@linux-m68k.org

Re: Is there an error in GCC Internals Manual, chapter 16.4?

2014-10-19 Thread Andreas Schwab
{constraint}) @end smallexample but, when generating RTL, it produces a (@code{scratch}:@var{m}) -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely different.

Re: Type-punning

2007-06-27 Thread Andreas Schwab
in a union and be able to use the common initial sequence of either alternative, see 6.5.2.3[#5]. Once you have defined such a union, objects of either type can alias each other. Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PROTECTED] SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg

Re: m68k compound instructions

2007-06-27 Thread Andreas Schwab
with that. The m68k machine description really would need a major overhaul to bring it up to modern standards. Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PROTECTED] SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany PGP key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276

Re: PATCH: Regenerate aclocal.m4 and Makefile.in

2007-06-30 Thread Andreas Schwab
H.J. Lu [EMAIL PROTECTED] writes: On Sat, Jun 30, 2007 at 07:26:52PM +0200, Andreas Schwab wrote: Please make sure that you have the right version of libtool installed before running aclocal. For reason, aclocal.m4 always has AM_PROG_LIBTOOL from the installed libtool.m4. Does anyone know

Re: autoconf 2.61 on debian etch and GCC

2007-07-03 Thread Andreas Schwab
. # Quote arguments with shell meta charatcers. TOPLEVEL_CONFIGURE_ARGUMENTS= -set -- $progname $@ +eval set x \$progname\ $ac_configure_args To avoid expanding $progname twice: eval set x \\$progname\ $ac_configure_args Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PROTECTED] SuSE Linux

Re: Question regarding getting .rodata into the .data section instead of .text

2007-07-03 Thread Andreas Schwab
Richmond Tuttle [EMAIL PROTECTED] writes: Is there a command option (for GCC, G++, and/or GAS) that will force .rodata (like jump tables) to be located in the .data section? You can use a linker script to override the default placement. Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL

Re: Question about use of sizetype in i386.c declared in stor-layout.c

2007-07-23 Thread Andreas Schwab
is long unsigned int for TARGET_64BIT. Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PROTECTED] SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany PGP key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely different.

Re: Question about use of sizetype in i386.c declared in stor-layout.c

2007-07-23 Thread Andreas Schwab
Kai Tietz [EMAIL PROTECTED] writes: Hmm... Ok, but why in stor-layout.c in initialize_sizetypes () SImode is explicit used ? See stor-layout.c:set_sizetype and c-common.c:c_common_nodes_and_builtins. Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PROTECTED] SuSE Linux Products GmbH

Re: Bootstrap error on i686-pc-linux-gnu

2007-07-30 Thread Andreas Schwab
. * function.h (dom_computed, n_bbs_in_dom_tree): New macros. * basic-block.h (struct control_flow_graph): Added x_dom_computed and x_n_bbs_in_dom_tree fields. Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PROTECTED] SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany PGP

Re: missing libtool sources?

2007-08-02 Thread Andreas Schwab
the full libtool sources to rebuild it anyway. Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PROTECTED] SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany PGP key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely different.

Re: mips gcc -O1: Address exception error on store doubleword

2007-08-09 Thread Andreas Schwab
undefined behaviour. If the aligment of PVAR is at least doubleword then the compiler may use doubleword accesses for copying. Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PROTECTED] SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany PGP key fingerprint = 58CA 54C7 6D53 942B

Re: Building gcc with a non-gcc compiler (Was: old intentional gcc bug?)

2007-08-14 Thread Andreas Schwab
. Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PROTECTED] SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany PGP key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely different.

Re: Failure in bootstrapping GFortran 4.3.0 on Cygwin

2007-08-17 Thread Andreas Schwab
Paolo Carlini [EMAIL PROTECTED] writes: Revital1 Eres wrote: Also on ppc64. Everywhere! The file is only updated by the new config/gcc_update script, so if you update the first time it is not created. How about this: 2007-08-17 Andreas Schwab [EMAIL PROTECTED] * Makefile.in

Re: Failure in bootstrapping GFortran 4.3.0 on Cygwin

2007-08-17 Thread Andreas Schwab
Dave Korn [EMAIL PROTECTED] writes: I'm not clear about this, are we allowed to use gnu-specific features like $(wildcard ...) in this makefile? Yes. @item GNU make version 3.79.1 (or later) You must have GNU make installed to build [EMAIL PROTECTED] Andreas. -- Andreas Schwab, SuSE

Re: warnings in GCC source?

2007-09-06 Thread Andreas Schwab
Basile STARYNKEVITCH [EMAIL PROTECTED] writes: So is there an easy way to have some acceptable warnings in GCC? See gcc/Makefile.in, look for -Wno-error. Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PROTECTED] SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany PGP key

Re: Ada rts fails to build on ppc64?

2007-09-17 Thread Andreas Schwab
for a workaround. does it now try to build a multilib for libada? libada still does not support multilib. Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PROTECTED] SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany PGP key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5

Re: bootstrap failure on ppc64-linux: ICE in set_variable_part

2007-09-17 Thread Andreas Schwab
truncation of the store register. Use convert_move instead of gen_lowpart when narrowing the result. (replace_read): Use convert_move instead of gen_lowpart when narrowing the store rhs. Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PROTECTED] SuSE Linux Products GmbH

Re: Preparsing sprintf format strings

2007-10-12 Thread Andreas Schwab
a part of an extended multibyte character. This can easily happen with the ISO 2022-JP encoding. The compiler is supposed to know the encoding of the strings. Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PROTECTED] SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany PGP key

Re: Plans for Linux ELF i686+ ABI ? Like SPARC V8+ ?

2007-10-15 Thread Andreas Schwab
4 (long long has the same anomaly.) Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PROTECTED] SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany PGP key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely different.

Re: va_list and x86_64 possible bug (?)

2007-10-17 Thread Andreas Schwab
Macy Gasp [EMAIL PROTECTED] writes: Any ideas on how I could solve this? There is no way around va_copy. But please ask in [EMAIL PROTECTED], this is off-topic here. Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PROTECTED] SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany

Re: -fno-tree-cselim not working?

2007-10-26 Thread Andreas Schwab
Ian Lance Taylor [EMAIL PROTECTED] writes: The above code happens to use pthread_mutex_trylock, but there is no need for that. pthread_mutex_trylock is special, because POSIX says it is a memory synchronisation point (see section 4.10 Memory Synchronization). Andreas. -- Andreas Schwab

Re: Optimization of conditional access to globals: thread-unsafe?

2007-10-28 Thread Andreas Schwab
Erik Trulsson [EMAIL PROTECTED] writes: I don't have access to the POSIX standard itself See http://www.opengroup.org/onlinepubs/009695399/toc.htm. Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PROTECTED] SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany PGP key fingerprint

Re: why are stl template classes not mangled as other classes andtemplates

2007-11-27 Thread Andreas Schwab
USER_LABEL_PREFIX directly instead of user_label_prefix. There is only one occurrence under config/i386, but I don't know how relevant it is. Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PROTECTED] SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany PGP key fingerprint = 58CA 54C7 6D53

Re: Bug in builtins.def, the execve. don't use execle, use execel.

2007-11-29 Thread Andreas Schwab
, etc. systems or whether they first appeared in System III or BSD 4.2 (early 1980's). According to http://www.freebsd.org/cgi/man.cgi they were already in V7. (I don't think V7 had varargs.h yet.) Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PROTECTED] SuSE Linux Products GmbH, Maxfeldstraße 5

Re: Link tests after GCC_NO_EXECUTABLES

2007-12-01 Thread Andreas Schwab
which includes --with-newlib, but this is only passed to configure scripts in host directories (via host_configargs), not target directories. Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PROTECTED] SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany PGP key fingerprint = 58CA 54C7

Re: Rant about ChangeLog entries and commit messages

2007-12-02 Thread Andreas Schwab
changed, so that you can find out when a particular change was made. Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PROTECTED] SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany PGP key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 And now for something completely

  1   2   3   4   5   6   7   8   9   10   >