diff options
author | Soni L <EnderMoneyMod@gmail.com> | 2024-05-20 19:42:04 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-20 15:42:04 -0700 |
commit | 926304ecffbb83fb7ae9dd06318180b69cd60268 (patch) | |
tree | c503a84f1c63c4449ab60315c006ab2e4467f8c1 | |
parent | 44837a7236e85c048de3214fd2ae4c37d3a034ce (diff) | |
download | wabt-926304ecffbb83fb7ae9dd06318180b69cd60268.tar.gz wabt-926304ecffbb83fb7ae9dd06318180b69cd60268.tar.bz2 wabt-926304ecffbb83fb7ae9dd06318180b69cd60268.zip |
wasm2c: Use wabt::StripExtension (#2424)
Fixes #2423
-rw-r--r-- | src/tools/wasm2c.cc | 16 | ||||
-rw-r--r-- | test/regress/issue-2423-wasm2c-no-extension.txt | 3 |
2 files changed, 6 insertions, 13 deletions
diff --git a/src/tools/wasm2c.cc b/src/tools/wasm2c.cc index a76ff78a..68bc7a6b 100644 --- a/src/tools/wasm2c.cc +++ b/src/tools/wasm2c.cc @@ -117,16 +117,6 @@ static void ParseOptions(int argc, char** argv) { } } -// TODO(binji): copied from binary-writer-spec.cc, probably should share. -static std::string_view strip_extension(std::string_view s) { - std::string_view ext = s.substr(s.find_last_of('.')); - std::string_view result = s; - - if (ext == ".c") - result.remove_suffix(ext.length()); - return result; -} - Result Wasm2cMain(Errors& errors) { if (s_num_outputs < 1) { fprintf(stderr, "Number of output files must be positive.\n"); @@ -152,12 +142,12 @@ Result Wasm2cMain(Errors& errors) { if (!s_outfile.empty()) { std::string header_name_full = - std::string(strip_extension(s_outfile)) + ".h"; + std::string(wabt::StripExtension(s_outfile)) + ".h"; std::vector<FileStream> c_streams; if (s_num_outputs == 1) { c_streams.emplace_back(s_outfile.c_str()); } else { - std::string output_prefix{strip_extension(s_outfile)}; + std::string output_prefix{wabt::StripExtension(s_outfile)}; for (unsigned int i = 0; i < s_num_outputs; i++) { c_streams.emplace_back(output_prefix + "_" + std::to_string(i) + ".c"); } @@ -181,7 +171,7 @@ Result Wasm2cMain(Errors& errors) { s_write_c_options)); } else { std::string header_impl_name_full = - std::string(strip_extension(s_outfile)) + "-impl.h"; + std::string(wabt::StripExtension(s_outfile)) + "-impl.h"; FileStream h_impl_stream(header_impl_name_full); std::string_view header_impl_name = GetBasename(header_impl_name_full); CHECK_RESULT(WriteC(std::move(c_stream_ptrs), &h_stream, &h_impl_stream, diff --git a/test/regress/issue-2423-wasm2c-no-extension.txt b/test/regress/issue-2423-wasm2c-no-extension.txt new file mode 100644 index 00000000..173940f9 --- /dev/null +++ b/test/regress/issue-2423-wasm2c-no-extension.txt @@ -0,0 +1,3 @@ +;;; TOOL: run-wasm2c +;;; ARGS: -o %(out_dir)s/out +(module $empty) |