Is it expected that CPU profiles taken with pprof don't include inlined frames?
With a
simple repro, when the `double` function has `go:noinline`, then the pprof shows the double function as expected,
3.34s 67.07% 67.07% 4.98s 100% main.main
1.64s 32.93% 100% 1.64s 32.93% main.double
However, when the noinline directive is removed, the double function isn't shown, only the main function is:
4.99s 100% 100% 4.99s 100% main.main
Is this an expected limitation of pprof profiles, or this a bug that I should report?
Thanks