to silence warning.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@265627
138bc75d-0d04-0410-961f-
82ee72b054a4
+2018-10-30 Nicholas Krause <xerofoify@gmail.com>
+
+ * method-serial.cc: Mark varible as potentially unused
+ to silence warning.
+
2018-08-03 Sergei Trofimovich <slyfox@gentoo.org>
* config/sh/sjlj.S: Adjust to use PIC vs normal code to avoid
// We're already serial, so we don't need to ensure privatization safety
// for other transactions here.
gtm_word priv_time = 0;
- bool ok = disp->trycommit (priv_time);
+ bool ok __attribute__((unused)) = disp->trycommit (priv_time);
// Given that we're already serial, the trycommit better work.
assert (ok);
}