Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
format
  • Loading branch information
kripken committed Mar 20, 2024
commit 159ca6208697ed40d760597d08a5f91284249105
24 changes: 6 additions & 18 deletions src/passes/Precompute.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -198,27 +198,15 @@ class PrecomputingExpressionRunner

// Disable string operations pending investigation of the correctness of our
// UTF implementation. FIXME
Flow visitStringNew(StringNew* curr) {
return Flow(NONCONSTANT_FLOW);
}
Flow visitStringConst(StringConst* curr) {
return Flow(NONCONSTANT_FLOW);
}
Flow visitStringNew(StringNew* curr) { return Flow(NONCONSTANT_FLOW); }
Flow visitStringConst(StringConst* curr) { return Flow(NONCONSTANT_FLOW); }
Flow visitStringMeasure(StringMeasure* curr) {
return Flow(NONCONSTANT_FLOW);
}
Flow visitStringConcat(StringConcat* curr) {
return Flow(NONCONSTANT_FLOW);
}
Flow visitStringEncode(StringEncode* curr) {
return Flow(NONCONSTANT_FLOW);
}
Flow visitStringEq(StringEq* curr) {
return Flow(NONCONSTANT_FLOW);
}
Flow visitStringAs(StringAs* curr) {
return Flow(NONCONSTANT_FLOW);
}
Flow visitStringConcat(StringConcat* curr) { return Flow(NONCONSTANT_FLOW); }
Flow visitStringEncode(StringEncode* curr) { return Flow(NONCONSTANT_FLOW); }
Flow visitStringEq(StringEq* curr) { return Flow(NONCONSTANT_FLOW); }
Flow visitStringAs(StringAs* curr) { return Flow(NONCONSTANT_FLOW); }
Flow visitStringWTF8Advance(StringWTF8Advance* curr) {
return Flow(NONCONSTANT_FLOW);
}
Expand Down