summaryrefslogtreecommitdiff
path: root/src/jit/codegenclassic.h
diff options
context:
space:
mode:
authorSergey Andreenko <seandree@microsoft.com>2017-05-26 09:13:08 -0700
committerGitHub <noreply@github.com>2017-05-26 09:13:08 -0700
commitd85104ea4e8a6328323f31a06107e3579a098093 (patch)
tree85b2a3b1e488e587c41e6db31e7d7ea965958f78 /src/jit/codegenclassic.h
parent6e3aaf4b40ac36f97dd73864851aaffad1280a7f (diff)
downloadcoreclr-d85104ea4e8a6328323f31a06107e3579a098093.tar.gz
coreclr-d85104ea4e8a6328323f31a06107e3579a098093.tar.bz2
coreclr-d85104ea4e8a6328323f31a06107e3579a098093.zip
Fix BitSetUint64, clean and improve the surrounding code. (#11721)
1. Add the functions that were not implemented in bitsetasuint64inclass/ 2. BitSetUint64: make copy_constructor public 3. delete VARSET_INIT_NOCOPY and ALLVARSET_INIT_NOCOPY 4. delete VARSET_INIT and ALLVARSET_INIT. 5. Use the correct const type for VARSET_TP.
Diffstat (limited to 'src/jit/codegenclassic.h')
-rw-r--r--src/jit/codegenclassic.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/jit/codegenclassic.h b/src/jit/codegenclassic.h
index eb4aeb7754..5794975b6c 100644
--- a/src/jit/codegenclassic.h
+++ b/src/jit/codegenclassic.h
@@ -566,8 +566,7 @@ struct genLivenessSet
regMaskSmall gcRefRegs;
regMaskSmall byRefRegs;
- genLivenessSet()
- : VARSET_INIT_NOCOPY(liveSet, VarSetOps::UninitVal()), VARSET_INIT_NOCOPY(varPtrSet, VarSetOps::UninitVal())
+ genLivenessSet() : liveSet(VarSetOps::UninitVal()), varPtrSet(VarSetOps::UninitVal())
{
}
};