diff options
Diffstat (limited to 'src/passes/Inlining.cpp')
-rw-r--r-- | src/passes/Inlining.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/passes/Inlining.cpp b/src/passes/Inlining.cpp index d0a69ea96..727e94d72 100644 --- a/src/passes/Inlining.cpp +++ b/src/passes/Inlining.cpp @@ -63,6 +63,7 @@ struct FunctionInfo { // See pass.h for how defaults for these options were chosen. bool worthInlining(PassOptions& options) { // Until we have proper support for try-delegate, ignore such functions. + // FIXME https://github.com/WebAssembly/binaryen/issues/3634 if (hasTryDelegate) { return false; } |