From 4da8c450fa53a2c9d585c868cad48f645e677333 Mon Sep 17 00:00:00 2001 From: Milian Wolff Date: Wed, 3 May 2017 17:36:35 +0200 Subject: [PATCH] Force the fill method to never get inlined --- tests/auto/tst_trace.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auto/tst_trace.cpp b/tests/auto/tst_trace.cpp index 21f456b..758b714 100644 --- a/tests/auto/tst_trace.cpp +++ b/tests/auto/tst_trace.cpp @@ -24,7 +24,7 @@ using namespace std; namespace { -bool fill(Trace& trace, int depth, int skip) +bool __attribute__((noinline)) fill(Trace& trace, int depth, int skip) { if (!depth) { return trace.fill(skip); -- 2.7.4