summaryrefslogtreecommitdiff
path: root/src/jit/inline.h
diff options
context:
space:
mode:
authorAndy Ayers <andya@microsoft.com>2016-08-04 19:14:57 -0700
committerGitHub <noreply@github.com>2016-08-04 19:14:57 -0700
commitc4da56ed917793ec1c5100841541d7e17a18f02a (patch)
treeae0ae51316a5275f35b96461613c1e5ed712fb79 /src/jit/inline.h
parent400ea0243af9b83d2d506b58effd9cf49176fe23 (diff)
parente3c3330339630f967bdb27c6bcde089e787b2aeb (diff)
downloadcoreclr-c4da56ed917793ec1c5100841541d7e17a18f02a.tar.gz
coreclr-c4da56ed917793ec1c5100841541d7e17a18f02a.tar.bz2
coreclr-c4da56ed917793ec1c5100841541d7e17a18f02a.zip
Merge pull request #6103 from mikedn/nothrowinl
Do not inline methods that never return
Diffstat (limited to 'src/jit/inline.h')
-rw-r--r--src/jit/inline.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/inline.h b/src/jit/inline.h
index 8f91247d4b..ebfdb7337a 100644
--- a/src/jit/inline.h
+++ b/src/jit/inline.h
@@ -564,7 +564,7 @@ struct InlineInfo
bool hasSIMDTypeArgLocalOrReturn;
#endif // FEATURE_SIMD
- GenTree * iciCall; // The GT_CALL node to be inlined.
+ GenTreeCall * iciCall; // The GT_CALL node to be inlined.
GenTree * iciStmt; // The statement iciCall is in.
BasicBlock * iciBlock; // The basic block iciStmt is in.
};