From: Serhei Makarov Date: Thu, 26 Feb 2026 17:11:06 +0000 (-0500) Subject: src/stackprof.cxx: minor oops for pc2 range check X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=68fdb6cfa8ea2706ef2053ad468dc53c7a3b52ce;p=thirdparty%2Felfutils.git src/stackprof.cxx: minor oops for pc2 range check --- diff --git a/src/stackprof.cxx b/src/stackprof.cxx index 2d89e919..98e06025 100644 --- a/src/stackprof.cxx +++ b/src/stackprof.cxx @@ -2056,7 +2056,7 @@ void GprofUnwindSampleConsumer::process(const UnwindSample *sample) if (verbose) clog << format(N_("{}: Skipping pc={:x} raw_pc={:x} outside module range start={:x}..end={:x}"), mainfile == NULL ? "" : mainfile, - pc, last_pc, low_addr, high_addr) << endl; + pc2, last_pc, low_addr, high_addr) << endl; return; } (void) j;