Skip to content

Commit 648d3ce

Browse files
committed
Floating-Point Types: move comment about IEEE formats into the table
1 parent d643f2c commit 648d3ce

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

llvm/docs/LangRef.rst

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3967,7 +3967,7 @@ Floating-Point Types
39673967
- Description
39683968

39693969
* - ``half``
3970-
- 16-bit floating-point value
3970+
- 16-bit floating-point value (IEEE-754 binary16)
39713971

39723972
* - ``bfloat``
39733973
- 16-bit "brain" floating-point value (7-bit significand). Provides the
@@ -3976,24 +3976,20 @@ Floating-Point Types
39763976
extensions and Arm's ARMv8.6-A extensions, among others.
39773977

39783978
* - ``float``
3979-
- 32-bit floating-point value
3979+
- 32-bit floating-point value (IEEE-754 binary32)
39803980

39813981
* - ``double``
3982-
- 64-bit floating-point value
3982+
- 64-bit floating-point value (IEEE-754 binary64)
39833983

39843984
* - ``fp128``
3985-
- 128-bit floating-point value (113-bit significand)
3985+
- 128-bit floating-point value (IEEE-754 binary128)
39863986

39873987
* - ``x86_fp80``
39883988
- 80-bit floating-point value (X87)
39893989

39903990
* - ``ppc_fp128``
39913991
- 128-bit floating-point value (two 64-bits)
39923992

3993-
The binary format of half, float, double, and fp128 correspond to the
3994-
IEEE-754-2008 specifications for binary16, binary32, binary64, and binary128
3995-
respectively.
3996-
39973993
X86_amx Type
39983994
""""""""""""
39993995

0 commit comments

Comments
 (0)