]> gitweb.factorcode.org Git - factor.git/blobdiff - vm/tagged.hpp
Removed VM_PTR macros. All builds reentrant by default
[factor.git] / vm / tagged.hpp
index 66cfa27c17d29499cabd70206cfc3aabddedbc09..e7a83d0111b44dfab83377e01dc6b321632ae003 100755 (executable)
@@ -37,13 +37,13 @@ struct tagged
 
        explicit tagged(cell tagged) : value_(tagged) {
 #ifdef FACTOR_DEBUG
-               untag_check(SIGNAL_VM_PTR());
+               untag_check(tls_vm());
 #endif
        }
 
        explicit tagged(Type *untagged) : value_(factor::tag(untagged)) {
 #ifdef FACTOR_DEBUG
-               untag_check(SIGNAL_VM_PTR()); 
+               untag_check(tls_vm()); 
 #endif
        }