Re: Handling pgoff in perf elf mmap/mmap2 elf info

2018-10-20 Thread Milian Wolff
On Montag, 15. Oktober 2018 22:38:53 CEST Milian Wolff wrote: > On Donnerstag, 11. Oktober 2018 20:14:43 CEST Milian Wolff wrote: > > On Donnerstag, 11. Oktober 2018 19:37:07 CEST Mark Wielaard wrote: > > > Hi, > > > > > > My apologies for not having looked deeper at this. > > > It is a bit tricky

[COMMITTED] backends: ppc use define instead of const for size of dwarf_regs array.

2018-10-20 Thread Mark Wielaard
The size of the dwarf_regs is a constant, but when building without optimizations the compiler doesn't see that and will warn that it cannot proof the stack size is bounded. Use a define instead of a const, so the compiler will use a constant expression everywhere. Signed-off-by: Mark Wielaard --