We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8ef60a commit a963040Copy full SHA for a963040
1 file changed
libc-bottom-half/crt/crt1-command.c
@@ -20,18 +20,18 @@ void _start(void) {
20
static volatile _Atomic int started = 0;
21
int expected = 0;
22
if (!atomic_compare_exchange_strong(&started, &expected, 1)) {
23
- __builtin_trap();
+ __builtin_trap();
24
}
25
#else
26
static volatile int started = 0;
27
if (started != 0) {
28
29
30
started = 1;
31
#endif
32
33
#ifdef _REENTRANT
34
- __wasi_init_tp();
+ __wasi_init_tp();
35
36
37
// The linker synthesizes this to call constructors.
0 commit comments