X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9104957deccc59e0e804215d5db498fabfd40d29..872cf95ab5a2b08aa1f2c6ebba29b9f86b0ba54e:/src/include/xbt/coverage.h diff --git a/src/include/xbt/coverage.h b/src/include/xbt/coverage.h index 30c209ef6b..3a562145f2 100644 --- a/src/include/xbt/coverage.h +++ b/src/include/xbt/coverage.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2019-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2019-2022. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -11,8 +11,19 @@ SG_BEGIN_DECL #ifdef COVERAGE + +#if defined(__GNUC__) && __GNUC__ >= 11 +#include "gcov.h" +#define coverage_checkpoint() \ + do { \ + __gcov_dump(); \ + __gcov_reset(); \ + } while (0) +#else extern void __gcov_flush(); #define coverage_checkpoint() __gcov_flush() +#endif + #else #define coverage_checkpoint() (void)0 #endif