Skip to content

Commit 2d626a8

Browse files
committed
Cshmgen: fixed the formatting of documentation comments
1 parent 7120520 commit 2d626a8

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

cfrontend/Cshmgen.v

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -615,11 +615,11 @@ Fixpoint typlist_of_arglist (al: list Clight.expr) (tyl: list type)
615615
returned by casting it to the return type of the function.
616616
For example, in the x86 ABI, a return value of type "char" is
617617
returned in register AL, leaving the top 24 bits of EAX
618-
unspecified. Hence, a cast to type "char" is needed to sign- or
618+
unspecified. Hence, a cast to type [char] is needed to sign- or
619619
zero-extend the returned integer before using it.
620-
Function results of type "_Bool" are generally returned as
620+
Function results of type [_Bool] are generally returned as
621621
one byte that is equal to 0 or to 1. Hence, the appropriate normalization
622-
is a cast to "unsigned char", not to "_Bool". *)
622+
is a cast to [unsigned char], not to [_Bool]. *)
623623

624624
Definition make_normalization (t: type) (a: expr) :=
625625
match t with
@@ -664,6 +664,7 @@ loop s1 s2 ---> block {
664664
}
665665
}
666666
// break in s1 and s2 branches here
667+
>>
667668
*)
668669

669670
Fixpoint transl_statement (ce: composite_env) (tyret: type) (nbrk ncnt: nat)

0 commit comments

Comments
 (0)