Re: [IMPORTANT] slots assigned

2016-04-14 Thread Giuseppe Scrivano
Hi Richard,

Richard Biener  writes:

> On Thu, 14 Apr 2016, Giuseppe Scrivano wrote:
>
>> Hi everyone,
>> 
>> We got 18 slots from Google.
>> 
>> It is less than we expected so not everyone is going to be satisfied by
>> the split below.
>> 
>> We have time until next week (deadline April 20, 2016 at 20:59 CEST)
>> to assign mentors to each project, but to give us time to review things,
>> please do this as soon as possible.  Please directly notify me off-list
>> when you have assigned the mentors so I can check that in the web
>> interface (I have not found a way in the new interface to look up this
>> information without going through all the proposals).
>> 
>> For each proposal, please be sure there is only one mentor assigned to
>> it and that each project has total proposals with a mentor == Assigned
>> slots.
>> 
>> I have assigned these slots based on the number of mentors available for
>> each project, but if you feel like giving away any slot to another
>> project, please do it.
> ...
>> Name: GCC
>> Assigned: 2
>
> So it looks like we need to scrap one of the three GCC proposals
> (currently all have Mentors "assigned" - well, not sure if
> "want to mentor" counts as assigned).
>
> There's the GIMPLE FE, Addressing mode selection and replacing
> libiberty with gnulib.
>
> To me the last one is least interesting (no observable effect to
> users or developers).

please let's discuss these things privately.  I doubt someone is going
to give a slot back as we got 4 less than what we requested, but if it
happens, GCC can take it.  Please notify me once two proposals get a
mentor assigned and I'll mark them accepted.

Regards,
Giuseppe


Re: Slides from Cauldron talks

2014-07-24 Thread Giuseppe Scrivano
David Edelsohn  writes:

> On Thu, Jul 24, 2014 at 2:19 AM, Tobias Burnus  wrote:
>> David Malcolm wrote:
>>>
>>> I didn't see a place to post slides for Cauldron talks, so am posting
>>> links to them here.
>>
>>
>> I have added the links to
>> https://gcc.gnu.org/wiki/cauldron2014#Slides_and_Notes
>>
>>
>>> Does anyone know if any Cauldron talks were recorded?
>>
>>
>> At least the ones in Lecture Theatre One were. However, I don't know when
>> the organizers will upload the videos.
>
> The videos will be uploaded to the GNU Tools Google+ page when available.

would it make sense to ask FSF to upload these videos to 
ftp://ftp.gnu.org/video/?

Regards,
Giuseppe


Re: GUPC: A GCC frontend for UPC

2010-03-03 Thread Giuseppe Scrivano
l...@gnu.org (Ludovic Courtès) writes:

>> The GUPC project is described here: http://gcc.gnu.org/projects/gupc.html.
>
> This URL is 404.

Hey Ludovic, it works well here.  Can the trailing dot be the problem?

Cheers,
Giuseppe


tree.c compiler warning

2009-06-14 Thread Giuseppe Scrivano
Hello,

last GCC revision has a compiler warning at line 8502.  Is this
extremely trivial patch OK?

Thanks,
Giuseppe


--- a/gcc/tree.c
+++ b/gcc/tree.c
@@ -8499,7 +8499,7 @@ widest_int_cst_value (const_tree x)
 
 #if HOST_BITS_PER_WIDEST_INT > HOST_BITS_PER_WIDE_INT
   gcc_assert (HOST_BITS_PER_WIDEST_INT >= 2 * HOST_BITS_PER_WIDE_INT);
-  val |= TREE_INT_CST_HIGH (x) << HOST_BITS_PER_WIDE_INT;
+  val |= (HOST_WIDEST_INT) TREE_INT_CST_HIGH (x) << HOST_BITS_PER_WIDE_INT;
 #else
   /* Make sure the sign-extended value will fit in a HOST_WIDE_INT.  */
   gcc_assert (TREE_INT_CST_HIGH (x) == 0