-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump deps/asmjit from
3ca5c18
to b4a2976
Bumps [deps/asmjit](https://github.com/asmjit/asmjit) from `3ca5c18` to `b4a2976`. - [Commits](asmjit/asmjit@3ca5c18...b4a2976) --- updated-dependencies: - dependency-name: deps/asmjit dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
- Loading branch information
1 parent
70b3d38
commit 8907b48
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule asmjit
updated
24 files
+44 −27 | .github/workflows/build.yml | |
+2 −13 | CMakeLists.txt | |
+1 −2 | db/isa_x86.json | |
+11 −0 | src/asmjit/arm/a64emitter.h | |
+39 −11 | src/asmjit/arm/a64operand.h | |
+20 −14 | src/asmjit/core.h | |
+1 −1 | src/asmjit/core/api-config.h | |
+16 −5 | src/asmjit/core/cpuinfo.cpp | |
+3 −0 | src/asmjit/core/emitter.h | |
+21 −16 | src/asmjit/core/operand.h | |
+8 −2 | src/asmjit/core/radefs_p.h | |
+7 −6 | src/asmjit/core/ralocal.cpp | |
+2 −0 | src/asmjit/core/rapass_p.h | |
+76 −18 | src/asmjit/core/string.cpp | |
+3 −3 | src/asmjit/core/support.h | |
+86 −32 | src/asmjit/core/zonevector.cpp | |
+16 −1 | src/asmjit/core/zonevector.h | |
+32 −24 | src/asmjit/x86/x86assembler.cpp | |
+17 −15 | src/asmjit/x86/x86emithelper.cpp | |
+3 −1 | src/asmjit/x86/x86emitter.h | |
+663 −666 | src/asmjit/x86/x86instdb.cpp | |
+3 −0 | src/asmjit/x86/x86operand.h | |
+48 −0 | src/asmjit/x86/x86rapass.cpp | |
+55 −0 | test/asmjit_test_compiler_x86.cpp |