File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -365,12 +365,12 @@ scenarios. The expr is extracted into an outlined function, which is marked `@no
365
365
366
366
Outlining an expr can be used to make a function smaller, e.g. by outlining an unlikely
367
367
branch, which could help with runtime performance by improving instruction cache locality,
368
- and could help with compilation performance since 2 smaller functions can sometimes compile
368
+ and could help with compilation performance since two smaller functions can sometimes compile
369
369
faster than one larger function. Finally, outlining can be useful for type-stability, by
370
370
outlining a type unstable block within a hot loop, where the outlined function could be type
371
371
stable.
372
372
373
- A common use case is to @outline the code that throws exceptions, since this should be a
373
+ A common use case is to ` @outline` the code that throws exceptions, since this should be a
374
374
rare case, but it can introduce a lot of complexity to the generated code, which can
375
375
sometimes harm the compiler's ability to optimize.
376
376
You can’t perform that action at this time.
0 commit comments