Skip to content

Commit

Permalink
Update to the latest LLVM 19 and wasi-libc. (#502)
Browse files Browse the repository at this point in the history
Update to LLVM 19.1.5, and wasi-libc 574b88da. This notably picks up:
 - [WebAssembly] Fix rethrow's index calculation (llvm/llvm-project#114693)
 - [WebAssembly] Fix feature coalescing (llvm/llvm-project#110647)
  • Loading branch information
sunfishcode authored Dec 12, 2024
1 parent 0736186 commit ccdf52e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/llvm-project
Submodule llvm-project updated 283 files
2 changes: 1 addition & 1 deletion src/wasi-libc
Submodule wasi-libc updated 51 files
+3 −7 .github/workflows/main.yml
+63 −136 Makefile
+86 −0 scripts/install-include-headers.sh
+0 −3 test/.gitignore
+130 −125 test/Makefile
+81 −2 test/README.md
+50 −0 test/scripts/add-flags.py
+24 −0 test/scripts/failed-tests.sh
+93 −0 test/scripts/filter.py
+21 −0 test/scripts/generate-stubs.sh
+20 −0 test/scripts/run-test.sh
+0 −35 test/smoke/smoke.mk
+3 −0 test/src/libc-test/functional/argv.c
+3 −0 test/src/libc-test/functional/basename.c
+3 −0 test/src/libc-test/functional/clocale_mbfuncs.c
+3 −0 test/src/libc-test/functional/clock_gettime.c
+3 −0 test/src/libc-test/functional/crypt.c
+3 −0 test/src/libc-test/functional/dirname.c
+3 −0 test/src/libc-test/functional/env.c
+3 −0 test/src/libc-test/functional/fnmatch.c
+3 −0 test/src/libc-test/functional/iconv_open.c
+3 −0 test/src/libc-test/functional/mbc.c
+3 −0 test/src/libc-test/functional/memstream.c
+3 −0 test/src/libc-test/functional/qsort.c
+3 −0 test/src/libc-test/functional/random.c
+3 −0 test/src/libc-test/functional/search_hsearch.c
+3 −0 test/src/libc-test/functional/search_insque.c
+3 −0 test/src/libc-test/functional/search_lsearch.c
+3 −0 test/src/libc-test/functional/search_tsearch.c
+3 −0 test/src/libc-test/functional/snprintf.c
+3 −0 test/src/libc-test/functional/sscanf.c
+3 −0 test/src/libc-test/functional/strftime.c
+3 −0 test/src/libc-test/functional/string.c
+3 −0 test/src/libc-test/functional/string_memcpy.c
+3 −0 test/src/libc-test/functional/string_memmem.c
+3 −0 test/src/libc-test/functional/string_memset.c
+3 −0 test/src/libc-test/functional/string_strchr.c
+3 −0 test/src/libc-test/functional/string_strcspn.c
+3 −0 test/src/libc-test/functional/string_strstr.c
+3 −0 test/src/libc-test/functional/strtod.c
+3 −0 test/src/libc-test/functional/strtod_long.c
+3 −0 test/src/libc-test/functional/strtod_simple.c
+3 −0 test/src/libc-test/functional/strtof.c
+3 −0 test/src/libc-test/functional/strtol.c
+3 −0 test/src/libc-test/functional/strtold.c
+3 −0 test/src/libc-test/functional/swprintf.c
+3 −0 test/src/libc-test/functional/tgmath.c
+3 −0 test/src/libc-test/functional/udiv.c
+3 −0 test/src/libc-test/functional/wcsstr.c
+3 −0 test/src/libc-test/functional/wcstol.c
+2 −0 test/src/misc/fts.c

0 comments on commit ccdf52e

Please sign in to comment.