Skip to content

Commit 261c650

Browse files
remove debug printings
1 parent 463871c commit 261c650

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

headers/wasm/concrete_rt.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,6 @@ class Frames_t {
166166
size_t size() const { return count; }
167167

168168
void set_from_front(int32_t index, const Num &num) {
169-
GENSYM_DBG(index);
170169
assert(index >= 0 && index < count && "Index out of bounds");
171170
stack_ptr[index] = num;
172171
}

headers/wasm/symbolic_rt.hpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,6 @@ inline std::monostate NodeBox::fillSnapshotNode(Snapshot_t snapshot) {
499499
}
500500

501501
inline std::monostate NodeBox::fillFinishedNode() {
502-
GENSYM_DBG("Filling with a Finished Node");
503502
if (this->isUnexplored()) {
504503
node = std::make_unique<Finished>();
505504
} else {
@@ -512,11 +511,6 @@ inline std::monostate NodeBox::fillFailedNode() {
512511
if (this->isUnexplored()) {
513512
node = std::make_unique<Failed>();
514513
} else {
515-
if (auto if_else_node = dynamic_cast<IfElseNode *>(node.get())) {
516-
GENSYM_DBG(typeid(*if_else_node).name());
517-
} else if (auto finished_node = dynamic_cast<Finished *>(node.get())) {
518-
GENSYM_DBG(typeid(*finished_node).name());
519-
}
520514
assert(dynamic_cast<Failed *>(node.get()) != nullptr);
521515
}
522516
return std::monostate();

0 commit comments

Comments
 (0)