summaryrefslogtreecommitdiff
path: root/src/jit/compiler.h
diff options
context:
space:
mode:
authorBruce Forstall <brucefo@microsoft.com>2019-01-09 11:07:20 -0800
committerGitHub <noreply@github.com>2019-01-09 11:07:20 -0800
commit867d7c93ea9dbabfc7262e747ecb3823983606e3 (patch)
tree7cfaa97f495d2ca2a75fca47901d2802bb096d6a /src/jit/compiler.h
parent03e2c029f7bbd36e06bcad3822b1dd3866772170 (diff)
parent4b68c59aa18e0af3c770e1bdf22993a252d19a46 (diff)
downloadcoreclr-867d7c93ea9dbabfc7262e747ecb3823983606e3.tar.gz
coreclr-867d7c93ea9dbabfc7262e747ecb3823983606e3.tar.bz2
coreclr-867d7c93ea9dbabfc7262e747ecb3823983606e3.zip
Merge pull request #20772 from mikedn/ir-cleanup
Some IR cleanup
Diffstat (limited to 'src/jit/compiler.h')
-rw-r--r--src/jit/compiler.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/jit/compiler.h b/src/jit/compiler.h
index 601c27b9e3..1fc90679b4 100644
--- a/src/jit/compiler.h
+++ b/src/jit/compiler.h
@@ -2385,7 +2385,8 @@ public:
GenTreeCall* gtNewHelperCallNode(unsigned helper, var_types type, GenTreeArgList* args = nullptr);
- GenTree* gtNewLclvNode(unsigned lnum, var_types type, IL_OFFSETX ILoffs = BAD_IL_OFFSET);
+ GenTree* gtNewLclvNode(unsigned lnum, var_types type DEBUGARG(IL_OFFSETX ILoffs = BAD_IL_OFFSET));
+ GenTree* gtNewLclLNode(unsigned lnum, var_types type DEBUGARG(IL_OFFSETX ILoffs = BAD_IL_OFFSET));
#ifdef FEATURE_SIMD
GenTreeSIMD* gtNewSIMDNode(
@@ -2430,12 +2431,9 @@ public:
CORINFO_CLASS_HANDLE gtGetStructHandleForHWSIMD(var_types simdType, var_types simdBaseType);
#endif // FEATURE_HW_INTRINSICS
- GenTree* gtNewLclLNode(unsigned lnum, var_types type, IL_OFFSETX ILoffs = BAD_IL_OFFSET);
GenTreeLclFld* gtNewLclFldNode(unsigned lnum, var_types type, unsigned offset);
GenTree* gtNewInlineCandidateReturnExpr(GenTree* inlineCandidate, var_types type);
- GenTree* gtNewCodeRef(BasicBlock* block);
-
GenTree* gtNewFieldRef(var_types typ, CORINFO_FIELD_HANDLE fldHnd, GenTree* obj = nullptr, DWORD offset = 0);
GenTree* gtNewIndexRef(var_types typ, GenTree* arrayOp, GenTree* indexOp);