diff options
author | Wouter van Oortmerssen <aardappel@gmail.com> | 2019-12-23 08:33:07 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-23 08:33:07 -0800 |
commit | 76ff3af40040a90c15b6b9f2614f3a3869dbdab1 (patch) | |
tree | 1602a779c3efdd40b09931be5aeec36f1f7a478e /CMakeLists.txt | |
parent | dff75b2844e5b512ef6106ba1da0ddff51cebab3 (diff) | |
download | wabt-76ff3af40040a90c15b6b9f2614f3a3869dbdab1.tar.gz wabt-76ff3af40040a90c15b6b9f2614f3a3869dbdab1.tar.bz2 wabt-76ff3af40040a90c15b6b9f2614f3a3869dbdab1.zip |
wasm-decompile: overhauled name filtering. (#1272)
The previous implementation was too simplistic, as it didn't do the
renaming at the correct location (such that it can catch all
occurrences), and was also very ineffective in cutting down gigantic
STL signatures to something managable. This version creates more
usable identifiers in almost all cases.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 10e30d77..9e39bf22 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -248,6 +248,7 @@ add_library(wabt STATIC src/decompiler.h src/decompiler-ast.h src/decompiler-ls.h + src/decompiler-naming.h src/decompiler.cc src/error-formatter.h src/error-formatter.cc |