Skip to content

Commit af65591

Browse files
committed
[llvm-libc] Revert a typo fix
This was fixed in emscripten-core#26022 but is from upstream, which was not supposed to be touched.
1 parent f23d8d9 commit af65591

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • system/lib/llvm-libc/src/__support/threads/linux

system/lib/llvm-libc/src/__support/threads/linux/thread.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ int Thread::run(ThreadStyle style, ThreadRunner runner, void *arg, void *stack,
295295
// The clone syscall takes arguments in an architecture specific order.
296296
// Also, we want the result of the syscall to be in a register as the child
297297
// thread gets a completely different stack after it is created. The stack
298-
// variables from this function will not be available to the child thread.
298+
// variables from this function will not be availalbe the child thread.
299299
#if defined(LIBC_TARGET_ARCH_IS_X86_64)
300300
long register clone_result asm(CLONE_RESULT_REGISTER);
301301
clone_result = LIBC_NAMESPACE::syscall_impl<long>(

0 commit comments

Comments
 (0)