8305112: RISC-V: Typo fix for RVC description

Reviewed-by: dholmes
This commit is contained in:
Xiaolin Zheng 2023-03-29 02:53:58 +00:00 committed by David Holmes
parent 7239150f8a
commit 96fa2751e8

View File

@ -1852,13 +1852,13 @@ enum Nf {
// versions. An example:
//
// CompressibleRegion cr(_masm);
// __ add(...); // this instruction will be compressed into 'c.and' when possible
// __ add(...); // this instruction will be compressed into 'c.add' when possible
// {
// IncompressibleRegion ir(_masm);
// __ add(...); // this instruction will not be compressed
// {
// CompressibleRegion cr(_masm);
// __ add(...); // this instruction will be compressed into 'c.and' when possible
// __ add(...); // this instruction will be compressed into 'c.add' when possible
// }
// }
//