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] Use -flto instead of -flto=N in DWARF producer string.


On 7/10/19 1:16 PM, Martin Liška wrote:
> On 7/10/19 1:15 PM, Jakub Jelinek wrote:
>> On Wed, Jul 10, 2019 at 01:08:52PM +0200, Martin Liška wrote:
>>> --- a/gcc/dwarf2out.c
>>> +++ b/gcc/dwarf2out.c
>>> @@ -24460,6 +24460,13 @@ gen_producer_string (void)
>>>        case OPT_fchecking_:
>>>  	/* Ignore these.  */
>>>  	continue;
>>> +      case OPT_flto_:
>>> +	  {
>>> +	    const char *lto_canonical = "-flto";
>>> +	    switches.safe_push (lto_canonical);
>>> +	    len += strlen (lto_canonical) + 1;
>>> +	    break;
>>> +	  }
>>
>> The indentation looks off, when case is indented by 6 columns,
>> { should be by 8 (i.e. a tab) and const by 10 (i.e. a tab + 2 spaces).
>>
>> 	Jakub
>>
> 
> You are right, sorry for that.
> 
> Martin
> 

May I please ping this?

Thanks,
Martin


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