The open source build complains about these: https://travis-ci.org/facebook/hiphop-php
Esse commit está contido em:
Paul Tarjan
2013-05-21 00:35:39 -07:00
commit de sgolemon
commit 17c75f16d1
+3 -6
Ver Arquivo
@@ -115,14 +115,11 @@ struct EagerVMRegAnchor {
VMRegState m_old;
EagerVMRegAnchor() {
if (debug) {
const Cell* fp = vmfp();
const Cell* sp = vmsp();
const uchar* pc = vmpc();
DEBUG_ONLY const Cell* fp = vmfp();
DEBUG_ONLY const Cell* sp = vmsp();
DEBUG_ONLY const uchar* pc = vmpc();
VMRegAnchor _;
assert(vmfp() == fp && vmsp() == sp && vmpc() == pc);
// compiler complains about unused variables
fp = sp = nullptr;
pc = nullptr;
}
m_old = tl_regState;
tl_regState = REGSTATE_CLEAN;