From: Brian Norris Date: Wed, 14 Aug 2013 04:51:56 +0000 (-0700) Subject: impatomic: silence more clang warnings X-Git-Tag: oopsla2015~17 X-Git-Url: http://plrg.eecs.uci.edu/git/?p=model-checker.git;a=commitdiff_plain;h=130a35155171503883aaf18e57f8957ce63d06e8;hp=130a35155171503883aaf18e57f8957ce63d06e8 impatomic: silence more clang warnings These 'return' values produce unused value warnings when the value returned by _ATOMIC_STORE_, _ATOMIC_INIT_, and _ATOMIC_MODIFY_ aren't used. Silence these warnings (but leave the ones for _ATOMIC_LOAD_) because we expect that the result of RMW's or stores may rightly be discarded in many cases. ---