a2c47adfba
This version fixes an issue with optimizing tuple-valued blocks, which would arise when inlining functions with multiple return values. Use the newly added `--type-unfinalizing` and `--type-finalizing` options to improve the effectiveness of the TypeSSA and TypeMerging passes. https://github.com/WebAssembly/binaryen/issues/5923 https://github.com/WebAssembly/binaryen/issues/5933 Change-Id: I1d5bc1052a355bf404f81a420a2352270030fd4c Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/327000 Reviewed-by: William Hesse <whesse@google.com> Auto-Submit: Aske Simon Christensen <askesc@google.com> Commit-Queue: Aske Simon Christensen <askesc@google.com>
19 lines
492 B
Python
19 lines
492 B
Python
#!/usr/bin/env python3
|
|
# Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file
|
|
# for details. All rights reserved. Use of this source code is governed by a
|
|
# BSD-style license that can be found in the LICENSE file.
|
|
|
|
import os
|
|
import sys
|
|
|
|
|
|
def main(args):
|
|
for file in os.listdir(args[0]):
|
|
if file.endswith('.cpp') or file.endswith('.h'):
|
|
if not "suffix_tree" in file:
|
|
print(file)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main(sys.argv[1:])
|