summaryrefslogtreecommitdiff
path: root/src/jit/scopeinfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/jit/scopeinfo.cpp')
-rw-r--r--src/jit/scopeinfo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jit/scopeinfo.cpp b/src/jit/scopeinfo.cpp
index 1d1a634825..2fd08f0e24 100644
--- a/src/jit/scopeinfo.cpp
+++ b/src/jit/scopeinfo.cpp
@@ -656,7 +656,7 @@ void CodeGen::siUpdate()
}
#endif // FEATURE_EH_FUNCLETS
- VARSET_TP VARSET_INIT_NOCOPY(killed, VarSetOps::Diff(compiler, siLastLife, compiler->compCurLife));
+ VARSET_TP killed(VarSetOps::Diff(compiler, siLastLife, compiler->compCurLife));
assert(VarSetOps::IsSubset(compiler, killed, compiler->lvaTrackedVars));
VARSET_ITER_INIT(compiler, iter, killed, i);
@@ -1252,4 +1252,4 @@ void CodeGen::psiEndProlog()
{
psiEndPrologScope(scope);
}
-} \ No newline at end of file
+}