Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions riscv-elf.md
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,12 @@ A null pointer (for all types) has the value zero.

The value of `_Alignof(max_align_t)` is 16.

Atomic types (for instance using `_Atomic(T)` (C11) or `std::atomic<T>` (C++11))
with a width less than or equal to 128 bits, should, if they are not a
power-of-two width, be padded to the next power-of-two width. They should be
aligned to their width including any padding. This should be done regardless of
whether any atomic extensions are enabled.

## <a name=va-list-va-start-and-va-arg></a> va_list, va_start, and va_arg

The `va_list` type is `void*`. A callee with variadic arguments is responsible
Expand Down