forked from OSchip/llvm-project
Code cleanup based on post-commit review from Aaron Ballman.
llvm-svn: 248385
This commit is contained in:
parent
ea73624e5f
commit
9c46be2d2f
|
@ -22,7 +22,6 @@
|
|||
#undef atomic_flag_clear
|
||||
void atomic_flag_clear(volatile atomic_flag *object) {
|
||||
__c11_atomic_store(&(object)->_Value, 0, __ATOMIC_SEQ_CST);
|
||||
return;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
void atomic_flag_clear_explicit(volatile atomic_flag *object,
|
||||
memory_order order) {
|
||||
__c11_atomic_store(&(object)->_Value, 0, order);
|
||||
return;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue