Skip to content
Merged
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
4 changes: 4 additions & 0 deletions riscv-cc.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -577,6 +577,8 @@ alignments (based on the ILP32 convention):
| int | 4 | 4 |
| long | 4 | 4 |
| long long | 8 | 8 |
| ++intmax_t++ | 8 | 8 | ++long long int++
| ++uintmax_t++ | 8 | 8 | ++unsigned long long int++
| void * | 4 | 4 |
| +++__bf16+++ | 2 | 2 | Half precision floating point (bfloat16)
| _Float16 | 2 | 2 | Half precision floating point (binary16 in IEEE 754-2008)
Expand All @@ -603,6 +605,8 @@ alignments (based on the LP64 convention):
| int | 4 | 4 |
| long | 8 | 8 |
| long long | 8 | 8 |
| ++intmax_t++ | 8 | 8 | ++long int++
| ++uintmax_t++ | 8 | 8 | ++unsigned long int++
| +++__int128+++ | 16 | 16 |
| void * | 8 | 8 |
| +++__bf16+++ | 2 | 2 | Half precision floating point (bfloat16)
Expand Down