From 30af0e039543698586d2cdbee9687cf15cc57bd9 Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Tue, 23 Jan 2018 23:20:02 -0800 Subject: [PATCH] Add noinline instruction to infrequently called functions. --- src/backend/utils/mmgr/mcxt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/utils/mmgr/mcxt.c b/src/backend/utils/mmgr/mcxt.c index d7baa54808..5537ba4139 100644 --- a/src/backend/utils/mmgr/mcxt.c +++ b/src/backend/utils/mmgr/mcxt.c @@ -433,7 +433,7 @@ MemoryContextIsEmpty(MemoryContext context) * make some effort to summarize when the output would otherwise be very long. * The statistics are sent to stderr. */ -void +void pg_noinline MemoryContextStats(MemoryContext context) { /* A hard-wired limit on the number of children is usually good enough */ -- 2.39.5