summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Regression/JitBlue/DevDiv_406156
AgeCommit message (Collapse)AuthorFilesLines
2017-04-10Fix a few errors in cast decomposition.Pat Gavlin2-0/+184
The cursor was not guaranteed to be in the correct location after cast decomposition due to the location in which the high result was typically placed. This mispositioning can cause re-decomposition, which can lead to asserts e.g. when encountering a GT_LONG node that was left behind by a previously-decomposed node. This change ensures that the high result immediately follows the cast node so that the cursor will be in the correct location following decomposition of the cast.