Skip to content

Commit 96df565

Browse files
committed
polish
1 parent 358bf85 commit 96df565

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/tools/fuzzing/fuzzing.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1772,7 +1772,7 @@ void TranslateToFuzzReader::mutate(Function* func) {
17721772
} finder;
17731773

17741774
if (oneIn(2)) {
1775-
// We read the IR here, and it must be totally valid - e.g. breaks have a
1775+
// |finder| reads the IR, and it must be totally valid - e.g. breaks have a
17761776
// proper break target - or else we'd hit internal errors. Fix it up first.
17771777
// (Otherwise, fixing it up is done once after mutation, and in that case
17781778
// we can mutate the IR in simple ways but not read it using
@@ -1809,7 +1809,6 @@ void TranslateToFuzzReader::mutate(Function* func) {
18091809

18101810
// Find the type to replace with.
18111811
auto type = curr->type;
1812-
// std::cout << "on " << type << '\n';
18131812
if (type.isRef()) {
18141813
auto iter = finder.childTypes.find(curr);
18151814
if (iter != finder.childTypes.end()) {

0 commit comments

Comments
 (0)