Code cleanup based on post-commit review from Aaron Ballman.

llvm-svn: 248385
This commit is contained in:
Chris Bieneman 2015-09-23 15:28:35 +00:00
parent ea73624e5f
commit 9c46be2d2f
2 changed files with 0 additions and 2 deletions

View File

@ -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

View File

@ -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