diff options
author | mikedn <onemihaid@hotmail.com> | 2018-01-03 16:39:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-03 16:39:26 +0200 |
commit | d170e3a035c80567090aa56024f92ad5b532cdcf (patch) | |
tree | 34bfee916fa5d2306e926d68fd9826168e440ec9 /Documentation | |
parent | 0950d37d84bb4af988c56fecd93fb174aece7277 (diff) | |
download | coreclr-d170e3a035c80567090aa56024f92ad5b532cdcf.tar.gz coreclr-d170e3a035c80567090aa56024f92ad5b532cdcf.tar.bz2 coreclr-d170e3a035c80567090aa56024f92ad5b532cdcf.zip |
Fix minor formatting issue in jit-call-morphing.md
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/design-docs/jit-call-morphing.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Documentation/design-docs/jit-call-morphing.md b/Documentation/design-docs/jit-call-morphing.md index 49fd8bf47c..cd87c21c1f 100644 --- a/Documentation/design-docs/jit-call-morphing.md +++ b/Documentation/design-docs/jit-call-morphing.md @@ -123,8 +123,10 @@ Evaluating Args into new LclVar temps and the creation of the LateArgs ----------------- After calling `SortArgs()`, the `EvalArgsToTemps()` method is called to create -the temp assignments and to populate the LateArgs list. Arguments that are -marked with `needTmp == true`. +the temp assignments and to populate the LateArgs list. + +Arguments that are marked with `needTmp == true`. +----------------- 1. We create an assignment using `gtNewTempAssign`. This assignment replaces the original argument in the `gtCallArgs` list. After we create the assignment |