From: Tiago Muck Date: Thu, 24 Jan 2019 21:40:46 +0000 (-0600) Subject: base: Add warn_if_once macro X-Git-Tag: v19.0.0.0~815 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cdc03f96a70b659ba3067c2dae1901aac5cda9df;p=gem5.git base: Add warn_if_once macro Change-Id: Ie68f3b07a35ed2e6b0eee20b3b34050542fcdc6c Signed-off-by: Tiago Muck Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/18420 Reviewed-by: Brandon Potter Reviewed-by: Daniel Carvalho Reviewed-by: Nikos Nikoleris Reviewed-by: Jason Lowe-Power Maintainer: Jason Lowe-Power Tested-by: kokoro --- diff --git a/src/base/logging.hh b/src/base/logging.hh index 1c504d22e..70400374d 100644 --- a/src/base/logging.hh +++ b/src/base/logging.hh @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014, 2017 ARM Limited + * Copyright (c) 2014, 2017, 2019 ARM Limited * All rights reserved * * The license below extends only to copyright in the software and shall @@ -231,6 +231,12 @@ class Logger warn(__VA_ARGS__); \ } while (0) +#define warn_if_once(cond, ...) \ + do { \ + if ((cond)) \ + warn_once(__VA_ARGS__); \ + } while (0) + /** * The chatty assert macro will function like a normal assert, but will allow * the specification of additional, helpful material to aid debugging why the