summaryrefslogtreecommitdiff
path: root/src/jit/lsra.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/jit/lsra.cpp')
-rw-r--r--src/jit/lsra.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/jit/lsra.cpp b/src/jit/lsra.cpp
index 66a665b2b2..bb2711a97d 100644
--- a/src/jit/lsra.cpp
+++ b/src/jit/lsra.cpp
@@ -49,8 +49,7 @@ XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Tree nodes (GenTree):
- GenTree::gtRegNum (and gtRegPair for ARM) is annotated with the register
assignment for a node. If the node does not require a register, it is
- annotated as such (for single registers, gtRegNum = REG_NA; for register
- pair type, gtRegPair = REG_PAIR_NONE). For a variable definition or interior
+ annotated as such (gtRegNum = REG_NA). For a variable definition or interior
tree node (an "implicit" definition), this is the register to put the result.
For an expression use, this is the place to find the value that has previously
been computed.
@@ -97,8 +96,6 @@ XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
#pragma hdrstop
#endif
-#ifndef LEGACY_BACKEND // This file is ONLY used for the RyuJIT backend that uses the linear scan register allocator
-
#include "lsra.h"
#ifdef DEBUG
@@ -10467,5 +10464,3 @@ void LinearScan::verifyResolutionMove(GenTree* resolutionMove, LsraLocation curr
}
}
#endif // DEBUG
-
-#endif // !LEGACY_BACKEND