forked from OSchip/llvm-project
Update comment on AtomicRMWInst::Nand
As of July 2014, all backends have been updated to implement AtomicRMWInst::Nand as ~(x & y) (and not as x & ~y, as some did previously). This was added to the release notes in r212635 (and the LangRef had been changed), but it seems that we forgot to update the header-file description. llvm-svn: 218236
This commit is contained in:
parent
52002ee5bb
commit
b152ac5890
|
@ -651,7 +651,7 @@ public:
|
|||
Sub,
|
||||
/// *p = old & v
|
||||
And,
|
||||
/// *p = ~old & v
|
||||
/// *p = ~(old & v)
|
||||
Nand,
|
||||
/// *p = old | v
|
||||
Or,
|
||||
|
|
Loading…
Reference in New Issue