summaryrefslogtreecommitdiff
path: root/src/jit/gentree.h
diff options
context:
space:
mode:
authorEgor Chesakov <Egor.Chesakov@microsoft.com>2018-09-04 10:35:30 -0700
committerEgor Chesakov <Egor.Chesakov@microsoft.com>2018-09-04 14:41:13 -0700
commite815efc9f5a2523baf59cb7bde6365e5247205b5 (patch)
treee1289aa921714ad64943823423ac0c2305bd034a /src/jit/gentree.h
parentb042edd2d3aab48fe9524381b8b445b910722d8d (diff)
downloadcoreclr-e815efc9f5a2523baf59cb7bde6365e5247205b5.tar.gz
coreclr-e815efc9f5a2523baf59cb7bde6365e5247205b5.tar.bz2
coreclr-e815efc9f5a2523baf59cb7bde6365e5247205b5.zip
Replace ssize_t with target_ssize_t in GenTree::ParseArrayAddress GenTree::ParseArrayAddressWork in src/jit/gentree.cpp src/jit/gentree.h
Diffstat (limited to 'src/jit/gentree.h')
-rw-r--r--src/jit/gentree.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/jit/gentree.h b/src/jit/gentree.h
index 006812beda..6ec7428d1d 100644
--- a/src/jit/gentree.h
+++ b/src/jit/gentree.h
@@ -1901,8 +1901,12 @@ public:
Compiler* comp, struct ArrayInfo* arrayInfo, GenTree** pArr, ValueNum* pInxVN, FieldSeqNode** pFldSeq);
// Helper method for the above.
- void ParseArrayAddressWork(
- Compiler* comp, ssize_t inputMul, GenTree** pArr, ValueNum* pInxVN, ssize_t* pOffset, FieldSeqNode** pFldSeq);
+ void ParseArrayAddressWork(Compiler* comp,
+ target_ssize_t inputMul,
+ GenTree** pArr,
+ ValueNum* pInxVN,
+ target_ssize_t* pOffset,
+ FieldSeqNode** pFldSeq);
// Requires "this" to be a GT_IND. Requires the outermost caller to set "*pFldSeq" to nullptr.
// Returns true if it is an array index expression, or access to a (sequence of) struct field(s)