Re: 3 byte variables [feature request]

2013-06-05 Thread Rob
tfields. typedef struct { int bits : 24; } int24_t; typedef struct { unsigned bits : 24; } uint24_t; This is as close as you can get, and these structs will be 4-byte aligned. Cheers, Rob

Re: programming language that does not inhibit further optimization by gcc

2013-10-15 Thread Rob
GCC does value analysis similar to what you mentioned. You'll find it under the -fdump-tree-vrp options. To provide extra information you can add range checks which GCC will pick up on. If you know a value is small, use a small integer type and gcc will pick up the range of values which can be assi

Re: gnu software bugs - long double

2013-11-02 Thread Rob
Sat, Nov 02, 2013, Mischa Baars: > On 11/02/2013 11:19 PM, Jonathan Wakely wrote: > >On 2 November 2013 22:12, Mischa Baars wrote: > > > >And 1.1 is not representable as long double. > > > >If you are willing to stop being so arrogant for a few minutes and > >learn something try running this progra

Re: Surprising Behavior Comparing Floats

2014-01-11 Thread Rob
my machine either way, but I'm on 4.7.2. Rob

Control Flow Graphs

2006-10-16 Thread Rob Quill
Hi, Does anyone know if it is possible to view/access/print out the control flow graphs produced by GCC, either at compilation time, or after compilation has taken place? Thanks for your time. Rob

Re: Control Flow Graphs

2006-10-16 Thread Rob Quill
can say whether properties of concurrent programs hold for all the possible interleavings. However, it was decided that that was too complicated, so it was narrowed to non-concurrent programs. --- Thanks again. Rob On 16/10/06, Paul Yuan <[EMAIL PROTECTED]> wrote: Call dump_flow_info(

Re: how to load a cfg from a file by tree-ssa

2006-11-23 Thread Rob Quill
I haven't looked into this yet, but as I think I may need to be able to do something similar, is it possible to parse the cfg file that is given out, and build a C structure like that? Thanks Rob On 21/11/06, Paolo Bonzini <[EMAIL PROTECTED]> wrote: > but i don't know how t

Re: how to load a cfg from a file by tree-ssa

2006-11-24 Thread Rob Quill
On 24/11/06, Paolo Bonzini <[EMAIL PROTECTED]> wrote: Rob Quill wrote: > I haven't looked into this yet, but as I think I may need to be able > to do something similar, is it possible to parse the cfg file that is > given out, and build a C structure like that? It seems t

Re: how to load a cfg from a file by tree-ssa

2006-11-24 Thread Rob Quill
On 24/11/06, Paolo Bonzini <[EMAIL PROTECTED]> wrote: Rob Quill wrote: > On 24/11/06, Paolo Bonzini <[EMAIL PROTECTED]> wrote: >> Rob Quill wrote: >> > I haven't looked into this yet, but as I think I may need to be able >> > to do something similar,

DW_AT_start_scope

2006-11-29 Thread Rob Quill
Hi, I am considering trying to add DW_AT_start_scope attributes to the debug info emmited by GCC, so it can be used by GDB. I just wanted to know what people think about this, and how difficult it is likely to be? Thanks for your time. Rob

Variable scope debug info

2007-04-05 Thread Rob Quill
assuming no-one has any objections, my question is, how do I go about trying to do it in GCC? What should I look at and where should I look? Thanks for your help. Rob

Re: Variable scope debug info

2007-04-05 Thread Rob Quill
On 05/04/07, Joe Buck <[EMAIL PROTECTED]> wrote: On Thu, Apr 05, 2007 at 02:37:06PM +0100, Rob Quill wrote: > My problem is thus: When using GDB do debug the follow bit of code: > > int i = 0; > int j = 2; > int k = 3; > > If I set a breakpoint at the 3rd line,

Re: Variable scope debug info

2007-04-06 Thread Rob Quill
So the general concensus is that's it's not worth doing? Hypothetically, if I did it and it didn't make much difference, would it be worth submitting a patch? Or should I just give up before I start? Rob On 06/04/07, Daniel Jacobowitz <[EMAIL PROTECTED]> wrote: On Thu,

Re: Variable scope debug info

2007-04-06 Thread Rob Quill
pile-time constant value) were started before n, i wouldn't even consider that to be a bug... I would consider it a marvel of intelligence in the compiler. How so? Rob - Original Message From: Joe Buck <[EMAIL PROTECTED]> To: Rob Quill <[EMAIL PROTECTED]> Cc: GCC Deve

Re: Variable scope debug info

2007-04-07 Thread Rob Quill
On 06/04/07, Joe Buck <[EMAIL PROTECTED]> wrote: On Fri, Apr 06, 2007 at 11:38:50AM +0100, Rob Quill wrote: > So the general concensus is that's it's not worth doing? > Hypothetically, if I did it and it didn't make much difference, would > it be worth submitting

Successful bootstrap of GCC 3.4.3 on i586-pc-interix3 (with one little problem)

2005-04-15 Thread Rob Hulswit
bash-3.00$ ../gcc-3.4.3/config.guess i586-pc-interix3 bash-3.00$ gcc/xgcc -v Using built-in specs. Configured with: ../gcc-3.4.3/configure --verbose --disable-shared --with-stabs --enable-nls --with-gnu-as --with-gnu-ld --enable-targets=i586-pc-interix3 --enable-threads=posix --enable-languages=c,c

Re: dejagnu version update?

2020-05-13 Thread Rob Savoye
nally. :-) And 1.4.4 was released 16 years ago... Linaro has been using the most recent release for years, so I think it's a safe upgrade. - rob - --- https://www.senecass.com

Re: dejagnu version update?

2020-05-14 Thread Rob Savoye
sk space. :-) Personally, I tried to find funding to refactor DejaGnu in Python, since Tcl is unmaintained too, but nobody was interested. - rob - --- https://www.senecass.com

Re: dejagnu version update?

2020-05-14 Thread Rob Savoye
Bugs in the test framework effect our ability to work on the toolchain efficiently, but other than the handful of people here, nobody cares. Forgetting the refactoring daydream, testing patches and doing releases still needs to be done, so I think we need a long-term solution and fresh

Re: dejagnu version update?

2020-05-14 Thread Rob Savoye
only used in the current century. Right now working through patches is probably more important. :-) There's zero patches on the DejaGnu savannah site, so I'd ask anybody to submit them so I don't have to dig them out of email archives. - rob -

Re: dejagnu version update?

2020-05-15 Thread Rob Savoye
ing progress on setting up a development environment to test patches. I use my ABE tool to build toolchains, had to fix some bugs (and add PI support) first. - rob - --- https://www.senecass.com

Re: dejagnu version update?

2020-05-16 Thread Rob Savoye
suite ones will go in first since they don't effect the toolchain. Jacob already added 9 patches to our site. I'm still building cross compilers since some of his patches effect cross testing. I did add ADA to my builds, which isn't a normal build default, since I thought some of the patches for ADA. - rob - --- https://www.senecass.com

Re: dejagnu version update?

2020-05-17 Thread Rob Savoye
Gnu doesn't change much, and there were only 2 of us working on it, so we just never thought about it. - rob -

Re: dejagnu version update?

2020-05-26 Thread Rob Savoye
I processed the patch backlog for DejaGnu, and have gone through the bug list. It'd be nice if somebody could try master with a more complex environment, etc... if I'm going to push out a release. For cross testing all I have is a PI and QEMU. - rob -

Re: dejagnu version update?

2020-05-26 Thread Rob Savoye
rather push out a stable release, than have to fix bugs right after it gets released. - rob -

Re: connecting a QEMU VM to dejagnu...

2019-10-16 Thread Rob Savoye
oolchain cross testing: https://git.linaro.org/toolchain/abe.git/tree/config/boards. There's a few on there. If you're building cross compilers, just use ABE and it's all built in. - rob -

SSA GIMPLE

2009-09-23 Thread Rob Quigley
467); __cxa_atexit (__tcf_0, 0B, &__dso_handle); __static_initialization_and_destruction_0 (1, 65535); Does anyone know where I might find such information? Any help and/or pointers in the direction of information would be most welcome. I tried the gcc wiki but I couldn't find much on SSA Gimple/low-Gimple Thanks and regards all! Rob

Updating gnu.org/software Fortran Page

2009-04-23 Thread Rob Myers
Fortran project if possible. Is there any information you would like adding to the project page or any other changes you would like making to its content? Thanks. - Rob Myers, Chief GNU Webmaster.

Re: Help for my Master thesis

2013-03-29 Thread Rob Doyle
o DO-178C and DO-278A" will also be relevant. These are all available from http://www.rtca.org/ (not free, sorry). The EU has identically worded documents via the EUROCAE organization (http://www.eurocae.net/). For example, ED-12C is identical to DO-178C. Rob.

Re: DejaGnu and toolchain testing

2013-07-26 Thread Rob Savoye
think expect has caused > quite a few problems for toolchain testing. In particular, there are or I don't think it was that we were happy with expect, but at least for GDB testing, nobody has any alternatives. I thought I mentioned that a refactored DejaGnu would only use expect for GDB testing, everything else wouldn't require it. That also means all the remote execution procs would need to work without expect as well. - rob -

Re: DejaGnu and toolchain testing

2013-07-26 Thread Rob Savoye
intained scripting language that nobody likes anyway (the current working idea is to use python). I also want to be able to compare test results in better ways than diffing huge text files. I'd like to compare multiple test runs as well in a reasonably detailed fashion. - rob -

Re: RFH: GPLv3

2007-07-13 Thread Rob Brown
ave an increased workload maintaining the separability of GPLv2 and GPLv3 code during the transition to the new license, and it would seem that the transition will take quite some time (years?), but I'm sure that they will develop procedures to make it manageable. Cheers, Rob Brown.

Re: RFH: GPLv3

2007-07-14 Thread Rob Brown
>Krzysztof Halasa wrote: >> Michael Eager <[EMAIL PROTECTED]> writes: >> >>> Not until someone updates the txt. Which should happen quickly, >>> but if someone applies a GPLv3 patch to a previously GPLv2 branch, >>> the entire branch becomes GPLv3, whether the COPYING file was >>> updated or not.

Re: RFH: GPLv3

2007-07-14 Thread Rob Brown
Robert Dewar wrote: >One could of course just take a blanket view that everything >on the site is, as of a certain moment, licensed under GPLv3 >(note you don't have to change file headers to achieve this, >the file headers have no particular legal significance in >any case). According to http://w

Removing #include "*.c"

2007-11-12 Thread Rob Quill
ry to include a .c file at all? Thanks for your help. Rob Quill

Handling overloaded template functions with variadic parameters

2007-11-15 Thread Rob Quill
iadic parameter Any advice you can offer is greatly appreciated. Rob Quill

Help understanding overloaded templates

2007-11-15 Thread Rob Quill
. Thanks. Rob

plugin help: Inserting a function call in gimple code?

2008-01-02 Thread Rob Johnson
tc., but I just can't figure our the "correct" way to insert a function call into the gimple tree. Any help would be greatly appreciated! Best, Rob

Re: plugin help: Inserting a function call in gimple code?

2008-01-03 Thread Rob Johnson
Martin Jambor wrote: Hi, On Wed, Jan 02, 2008 at 06:13:37PM -0500, Rob Johnson wrote: I'm experimenting with the gimple plugin infrastructure and I'm having trouble instrumenting code in a way that is compatible with the optimizer. Here's a simple example that is intende

[gnu.org #456639] broken link in libstdc++ manual online

2009-06-23 Thread Rob Myers via RT
warding you this email that was assigned to gnu webmasters for the attention of your web page guys. Thanks. - Rob Myers.

files in (at least) two archives in https://gcc.gnu.org/onlinedocs/gcc-14.2.0/ contain case-sensitive file names

2024-08-28 Thread Rob Groen via Gcc
it possible to remedy this, or otherwise provide a warning about the non-portability of these archives. Or provide a workaround. Best regards, Rob Groen