This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH 1/2] Libsanitizer merge from upstream r253555.


On 24 November 2015 at 09:58, Maxim Ostapenko
<m.ostapenko@partner.samsung.com> wrote:
> On 24/11/15 11:38, Jakub Jelinek wrote:
>>
>> On Tue, Nov 24, 2015 at 11:36:20AM +0300, Maxim Ostapenko wrote:
>>>
>>> Ok, does it look better now?
>>
>> Sure, this is ok for trunk.
>>
>>> diff --git a/libsanitizer/ChangeLog b/libsanitizer/ChangeLog
>>> index b97fc7d..c392c57 100644
>>> --- a/libsanitizer/ChangeLog
>>> +++ b/libsanitizer/ChangeLog
>>> @@ -1,3 +1,7 @@
>>> +2015-11-24  Maxim Ostapenko  <m.ostapenko@partner.samsung.com>
>>> +
>>> +       * include/system/linux/asm/ptrace.h: New header.
>>> +
>>>   2015-11-23  Maxim Ostapenko  <m.ostapenko@partner.samsung.com>
>>>         * All source files: Merge from upstream r253555.
>>> diff --git a/libsanitizer/include/system/linux/asm/ptrace.h
>>> b/libsanitizer/include/system/linux/asm/ptrace.h
>>> new file mode 100644
>>> index 0000000..d4249fe
>>> --- /dev/null
>>> +++ b/libsanitizer/include/system/linux/asm/ptrace.h
>>> @@ -0,0 +1,7 @@
>>> +#include_next <linux/asm/ptrace.h>
>>> +/* ARM_VFPREGS_SIZE has been added in 3.0 */
>>> +#if defined(__arm__) && !defined(ARM_VFPREGS_SIZE)
>>> +/* The size of the user-visible VFP state as seen by
>>> PTRACE_GET/SETVFPREGS
>>> +   and core dumps.  */
>>> +#define ARM_VFPREGS_SIZE ( 32 * 8 /*fpregs*/ + 4 /*fpscr*/ )
>>> +#endif
>>
>>         Jakub
>>
>
> Thanks, applied as r230790.
>
> Christophe, please let me know if it cured your build.
>

Sure.
I had a build in progress with your proposed patch, but it didn't
complete before you committed :-)

> -Maxim


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]