Re: [PATCH V6 06/16] perf script: Use ULL for enum perf_output_field

2020-08-12 Thread Liang, Kan
On 8/12/2020 8:21 AM, Arnaldo Carvalho de Melo wrote: Em Mon, Aug 10, 2020 at 02:24:26PM -0700, Kan Liang escreveu: The Bitwise-Shift operator (1U << ) is used in the enum perf_output_field, which has already reached its capacity (32 items). If more items are added, a compile error will be

Re: [PATCH V6 06/16] perf script: Use ULL for enum perf_output_field

2020-08-12 Thread Arnaldo Carvalho de Melo
Em Mon, Aug 10, 2020 at 02:24:26PM -0700, Kan Liang escreveu: > The Bitwise-Shift operator (1U << ) is used in the enum > perf_output_field, which has already reached its capacity (32 items). > If more items are added, a compile error will be triggered. > > Change the U to ULL, which extend the