Add CPU flags value types to the language reference manual.

Clean up a few other things in the value types section too.
This commit is contained in:
Jakob Stoklund Olesen
2017-10-17 12:08:58 -07:00
parent 6f33066daa
commit c3446ee472
2 changed files with 18 additions and 23 deletions

View File

@@ -35,12 +35,12 @@ f64 = FloatType(
iflags = FlagsType(
'iflags', """
CPU flags representing the result of an integer comparison. These flags
can be tested with an `intcc` condition code.
can be tested with an :type:`intcc` condition code.
""")
#: CPU flags from a floating point comparison.
fflags = FlagsType(
'fflags', """
CPU flags representing the result of a floating point comparison. These
flags can be tested with a `floatcc` condition code.
flags can be tested with a :type:`floatcc` condition code.
""")