summaryrefslogtreecommitdiff
path: root/src/jit
diff options
context:
space:
mode:
authorAlexandr Nikitin <nikitin.alexandr.a@gmail.com>2015-11-25 08:44:46 +0200
committerAlexandr Nikitin <nikitin.alexandr.a@gmail.com>2015-11-25 08:44:46 +0200
commitec8e046d6e027e636dbfa45209cce5af7a0e8ea4 (patch)
treebde059d806c05fb1e6d44d77e83595fe54b253c4 /src/jit
parent0279dbd600e14d88cfe87408f08f6adce59d2d8d (diff)
downloadcoreclr-ec8e046d6e027e636dbfa45209cce5af7a0e8ea4.tar.gz
coreclr-ec8e046d6e027e636dbfa45209cce5af7a0e8ea4.tar.bz2
coreclr-ec8e046d6e027e636dbfa45209cce5af7a0e8ea4.zip
Remove duplicate assignment in Compiler::gtNodeHasSideEffects
Diffstat (limited to 'src/jit')
-rw-r--r--src/jit/gentree.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/jit/gentree.cpp b/src/jit/gentree.cpp
index 5897a52c7d..6d02be469d 100644
--- a/src/jit/gentree.cpp
+++ b/src/jit/gentree.cpp
@@ -10828,7 +10828,6 @@ bool Compiler::gtNodeHasSideEffects(GenTreePtr tree, unsigned fla
|| (s_helperCallProperties.IsAllocator(helper) && !s_helperCallProperties.MayFinalize(helper)))
{
GenTreeCall* call = tree->AsCall();
- GenTreeArgList* args = call->gtCallArgs;
for (GenTreeArgList* args = call->gtCallArgs; args != nullptr; args = args->Rest())
{
if (gtTreeHasSideEffects(args->Current(), flags)) return true;