Re: [PATCH 10/12] perf script: Add support for PERF_SAMPLE_CODE_PAGE_SIZE

From: Andi Kleen
Date: Tue Jan 22 2019 - 12:11:48 EST


> + PERF_OUTPUT_CODE_PAGE_SIZE = 1UL << 32,

That won't work on 32bit. You need 1ULL

Also might want to audit that noone puts these flags into
an int.

-Andi