This is the mail archive of the gcc@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: Segfault generated by gcc-7


On 29 August 2017 at 11:38, Marek Polacek wrote:
> On Tue, Aug 29, 2017 at 12:31:39PM +0200, Marco Varlese wrote:
>> Hi,
>>
>> I got a SEGFAULT in my program when compiling it with gcc-7 but it
>> is/was all good when using gcc-6.
>>
>> The SEGFAULT happens due to the line below:
>> d_point = *p;
>>
>> And a fix for it (with gcc-7) has been:
>> memcpy(&d_point,
>>       p,
>>       sizeof(d_point));
>>
>> Does this make any sense to anybody?
>
> Not without a stand-alone testcase.  See <https://gcc.gnu.org/bugs/>
> for more info.

Also please note that this mailing list is for discussing the
development of GCC itself. For help and support use the
gcc-help@gcc.gnu.org list instead.


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