<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>Issue</th>
<td>
<a href=https://github.com/llvm/llvm-project/issues/133697>133697</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>
__c11_atomic_add_fetch is not implemented
</td>
</tr>
<tr>
<th>Labels</th>
<td>
</td>
</tr>
<tr>
<th>Assignees</th>
<td>
</td>
</tr>
<tr>
<th>Reporter</th>
<td>
pakluba
</td>
</tr>
</table>
<pre>
Could you please implement the missing C11 variants of the atomic builtins?
I was using stdatomic.h in my code, sometimes directly with the `__atomic_*` builtins, but got a quite confusing compilation error:
`address argument to atomic operation must be a pointer to integer, pointer or supported floating point type ('atomic_uint *' (aka '_Atomic(unsigned int) *') invalid`
After doing some search it turned out that instead of the `__atomic_*` builtins the `__c11_atomic_*` builtins shall be used. It fixed most of my issues except where a `__c11_*` variant is not available.
While those are not available, it it OK to make the compilation error go away by casting the atomic pointer to ordinary pointer?
`__atomic_add_fetch((unsigned int *)(ptr), val, memorder)`
</pre>
<img width="1" height="1" alt="" src="http://email.email.llvm.org/o/eJx8lM-PqzYQx_8acxm9CAxJyIFDmirSUw899hgNeAB3bUztcXb57ytDkt1V1SdFwpqf_s5nYgxBDxNRI_a_if3vGUYenW9mfDOxxax1amkuLhoFi4swG8JAoO1syNLEwCOB1SHoaYBLUcAdvcaJA7h-9SE7qztoozaspyDKq8jPIj__hHcMENe8wGoL242gJ7ALdE6RkBcIzhJrSwGU9tSxWeBd87hWBnHIb7ct8SbkWRzyzzbyAm1kGBwDwj9RM0Hnpn7r1zk7a4Os3QTkvfOiPG-3EocclfIUAqAf4qbQPUW4mfyWZWNgaAkQZqcnJp-i0mEgn3o_rc5DiPPsPJOC3jjk1H_1Ai8zgZC1kMeHiJjMSYk8Jge-IQh5vJ1Xr5B1nFZUKnUS8vQITSc93dFoJQ75puPcp-7KrdN1liAQ-m4EzcDRpxIuJnbIoKfAhOrJ6xdD_fR3RfF_MWFEY9JoYiC1g58Mvf4gBdYFTj3sAjqESAHoo6OZ4X0knwb5Kvyo-Fgk0AGmRPGO2mBraLcp_GvUhoBHFwjQ0_eYhEBz-v35RyJj8Y3W2_-HPAwO8B0XaBfoMKx4vqztF7rOKz2hX5621yZ_nRgqdeuJu3Hl-g3YRuskZD2zXw8XuKNJH0vWeUWrdSWYqaZUp_KEGTXFsSqroi7yOhsbLA511cpyL491fihzeTruq6rt6zLvcF_ITDcyl_u8LIsir2pZ7_Jqv6_7ou9UeehkTqLKyaI2O2Puduf8kK04mqIsD6djZrAlE55vgW9S1I82DkFUudGBw2ceazbUfFuGl_wntdc7QSqL3jQj8xzSv01ehbwOmsfY7jpnhbymuo_Pj9m7v6ljIa_brgh5fdzv3sh_AwAA__-6KpGR">