Skip to content

Commit

Permalink
Update flatcc to 896db54 (#3967)
Browse files Browse the repository at this point in the history
Summary:
See changes in
dvidelabs/flatcc@eb5228f...896db54

We don't need anything specific from this newer version, but it's good to stay up-to-date to ensure we have the latest bug/security fixes.

Pull Request resolved: #3967

Test Plan:
Followed the instructions at
https://pytorch.org/executorch/main/tutorials/sdk-integration-tutorial.html
up to the `print_tabular_data` step of `Creating an Inspector`.

Reviewed By: tarun292

Differential Revision: D58494083

Pulled By: dbort

fbshipit-source-id: 5d6eda6efb1e5a7c9ba1a91845138bf05f258306
  • Loading branch information
dbort authored and facebook-github-bot committed Jun 13, 2024
1 parent 1345bc2 commit 1892c10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third-party/flatcc
Submodule flatcc updated 42 files
+11 −0 .github/dependabot.yml
+10 −7 .github/workflows/ci.yml
+61 −22 .github/workflows/weekly.yml
+28 −0 CHANGELOG.md
+19 −1 CMakeLists.txt
+93 −9 README.md
+4 −0 external/hash/README.md
+2 −0 external/hash/hash_table_impl.h
+2 −0 external/hash/hash_table_impl_rh.h
+2 −2 external/hash/hash_test.c
+43 −9 external/hash/ht_hash_function.h
+1 −1 external/hash/int_set.h
+5,451 −0 external/hash/xxhash.h
+3 −3 external/lex/luthor.c
+1 −1 include/flatcc/flatcc.h
+14 −9 include/flatcc/flatcc_accessors.h
+1 −0 include/flatcc/flatcc_alloc.h
+2 −0 include/flatcc/flatcc_flatbuffers.h
+28 −0 include/flatcc/flatcc_verifier.h
+1 −0 include/flatcc/portable/paligned_alloc.h
+1 −1 include/flatcc/portable/pattributes.h
+232 −0 include/flatcc/portable/pmemaccess.h
+2 −0 include/flatcc/portable/portable_basic.h
+39 −0 include/flatcc/portable/prestrict.h
+10 −1 include/flatcc/portable/pstdbool.h
+1 −1 include/flatcc/portable/punaligned.h
+3 −3 include/flatcc/support/elapsed.h
+10 −1 scripts/_user_build.in
+9 −8 src/cli/flatcc_cli.c
+3 −1 src/compiler/CMakeLists.txt
+32 −0 src/compiler/codegen_c_verifier.c
+6 −1 src/compiler/codegen_schema.c
+13 −1 src/compiler/flatcc.c
+4 −5 src/compiler/parser.c
+1 −1 src/compiler/semantics.c
+22 −7 src/runtime/builder.c
+72 −2 src/runtime/verifier.c
+1 −0 test/CMakeLists.txt
+20 −0 test/doublevec_test/CMakeLists.txt
+113 −0 test/doublevec_test/doublevec_test.c
+5 −0 test/doublevec_test/doublevec_test.fbs
+4 −3 test/emit_test/emit_test.c

0 comments on commit 1892c10

Please sign in to comment.