summaryrefslogtreecommitdiff
path: root/src/jit/lir.h
diff options
context:
space:
mode:
authorPat Gavlin <pagavlin@microsoft.com>2017-06-26 14:40:15 -0700
committerPat Gavlin <pagavlin@microsoft.com>2017-06-26 16:16:20 -0700
commit115a357068bde4ba5a1432d9f5811c3446a830e7 (patch)
tree2d09f714d8eea0ae38262facfffefc5ed504ce74 /src/jit/lir.h
parent54e8503de4a20dd666bac6448f6296e459891a38 (diff)
downloadcoreclr-115a357068bde4ba5a1432d9f5811c3446a830e7.tar.gz
coreclr-115a357068bde4ba5a1432d9f5811c3446a830e7.tar.bz2
coreclr-115a357068bde4ba5a1432d9f5811c3446a830e7.zip
Use LIR utilities in the intrinsic rewriter.
This simplifies the code a bit and prepares it for some changes to perform single-pass rationalization.
Diffstat (limited to 'src/jit/lir.h')
-rw-r--r--src/jit/lir.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/jit/lir.h b/src/jit/lir.h
index 71c114747f..088b5e523f 100644
--- a/src/jit/lir.h
+++ b/src/jit/lir.h
@@ -8,6 +8,7 @@
class Compiler;
struct GenTree;
struct BasicBlock;
+class Rationalizer;
class LIR final
{
@@ -236,6 +237,7 @@ public:
{
friend class LIR;
friend struct BasicBlock;
+ friend class Rationalizer;
private:
Range(GenTree* firstNode, GenTree* lastNode);