Skip to content

Commit

Permalink
microblaze: continue testing after ci fix
Browse files Browse the repository at this point in the history
Signed-off-by: Alp Sayin <alpsayin@gmail.com>
  • Loading branch information
alpsayin committed Aug 31, 2023
1 parent 0f841b6 commit 7369071
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gcc
Submodule gcc updated 39 files
+13 −0 gcc/common/config/microblaze/microblaze-common.cc
+6 −0 gcc/config/microblaze/constraints.md
+7 −0 gcc/config/microblaze/microblaze-c.cc
+3 −1 gcc/config/microblaze/microblaze-protos.h
+519 −170 gcc/config/microblaze/microblaze.cc
+49 −33 gcc/config/microblaze/microblaze.h
+1,428 −118 gcc/config/microblaze/microblaze.md
+9 −0 gcc/config/microblaze/microblaze.opt
+17 −11 gcc/config/microblaze/sync.md
+13 −5 gcc/config/microblaze/t-microblaze
+2 −2 gcc/testsuite/g++.dg/abi/rtti3.C
+1 −1 gcc/testsuite/g++.dg/abi/thunk3.C
+1 −1 gcc/testsuite/g++.dg/abi/thunk4.C
+4 −0 gcc/testsuite/g++.dg/opt/memcpy1.C
+4 −0 gcc/testsuite/gcc.c-torture/execute/builtins/builtins.exp
+1 −1 gcc/testsuite/gcc.target/microblaze/isa/fcmp1.c
+1 −1 gcc/testsuite/gcc.target/microblaze/isa/fcmp2.c
+1 −1 gcc/testsuite/gcc.target/microblaze/isa/fcmp3.c
+1 −1 gcc/testsuite/gcc.target/microblaze/isa/fcmp4.c
+7 −7 gcc/testsuite/gcc.target/microblaze/isa/nofcmp.c
+6 −6 gcc/testsuite/gcc.target/microblaze/isa/vanilla.c
+9 −0 gcc/testsuite/gcc.target/microblaze/others/long.c
+13 −0 gcc/testsuite/gcc.target/microblaze/others/lshrsi_Os_1.c
+4 −0 gcc/testsuite/gcc.target/microblaze/others/strings1.c
+2 −0 gcc/testsuite/lib/target-supports.exp
+25 −3 libgcc/config/microblaze/crti.S
+15 −2 libgcc/config/microblaze/crtn.S
+98 −0 libgcc/config/microblaze/divdi3.S
+62 −0 libgcc/config/microblaze/divdi3_table.c
+64 −6 libgcc/config/microblaze/divsi3.S
+97 −0 libgcc/config/microblaze/moddi3.S
+60 −3 libgcc/config/microblaze/modsi3.S
+73 −0 libgcc/config/microblaze/muldi3.S
+34 −0 libgcc/config/microblaze/mulsi3.S
+107 −0 libgcc/config/microblaze/udivdi3.S
+71 −5 libgcc/config/microblaze/udivsi3.S
+110 −0 libgcc/config/microblaze/umoddi3.S
+75 −3 libgcc/config/microblaze/umodsi3.S
+1 −0 microblaze_patches
2 changes: 1 addition & 1 deletion gdb
Submodule gdb updated 57 files
+2 −1 Makefile.def
+1 −1 Makefile.in
+2 −0 bfd/Makefile.am
+3 −0 bfd/Makefile.in
+2 −0 bfd/archures.c
+29 −2 bfd/bfd-in2.h
+12 −0 bfd/config.bfd
+2 −0 bfd/configure
+53 −2 bfd/cpu-microblaze.c
+226 −14 bfd/elf32-microblaze.c
+3,810 −0 bfd/elf64-microblaze.c
+3 −0 bfd/libbfd.h
+20 −0 bfd/reloc.c
+6 −0 bfd/targets.c
+2 −0 gdb/Makefile.in
+2 −2 gdb/completer.c
+2 −0 gdb/configure.host
+4 −0 gdb/configure.nat
+1 −1 gdb/configure.tgt
+3 −0 gdb/features/Makefile
+4 −2 gdb/features/microblaze-core.xml
+79 −0 gdb/features/microblaze-linux.c
+13 −0 gdb/features/microblaze-linux.xml
+2 −2 gdb/features/microblaze-stack-protect.xml
+4 −4 gdb/features/microblaze-with-stack-protect.c
+4 −2 gdb/features/microblaze.c
+69 −0 gdb/features/microblaze64-core.xml
+12 −0 gdb/features/microblaze64-stack-protect.xml
+79 −0 gdb/features/microblaze64-with-stack-protect.c
+12 −0 gdb/features/microblaze64-with-stack-protect.xml
+77 −0 gdb/features/microblaze64.c
+12 −0 gdb/features/microblaze64.xml
+14 −7 gdb/frame.c
+366 −0 gdb/microblaze-linux-nat.c
+75 −5 gdb/microblaze-linux-tdep.c
+24 −0 gdb/microblaze-linux-tdep.h
+461 −50 gdb/microblaze-tdep.c
+54 −8 gdb/microblaze-tdep.h
+5 −1 gdb/mips-linux-nat.c
+6 −0 gdb/nat/ppc-linux.h
+64 −0 gdb/regformats/microblaze-linux.dat
+41 −0 gdb/regformats/reg-microblaze.dat
+2 −1 gdbserver/Makefile.in
+10 −0 gdbserver/configure.srv
+1 −1 gdbserver/linux-low.cc
+269 −0 gdbserver/linux-microblaze-low.cc
+6 −0 gdbserver/linux-ppc-low.cc
+1 −1 gdbsupport/signals-state-save-restore.cc
+4 −4 gnulib/import/sys_time.in.h
+1 −0 include/elf/common.h
+4 −0 include/elf/microblaze.h
+10 −0 libiberty/sha1.c
+1 −0 microblaze_patches
+43 −8 opcodes/microblaze-dis.c
+172 −8 opcodes/microblaze-opc.h
+28 −8 opcodes/microblaze-opcm.h
+1 −1 sim/common/Make-common.in
2 changes: 1 addition & 1 deletion picolibc
Submodule picolibc updated 94 files
+22 −2 .github/do-build
+22 −2 .github/do-test
+3 −0 CMakeLists.txt
+2 −0 cmake/have-builtin-complex.c
+1 −0 cmake/picolibc.cmake
+13 −0 meson.build
+3 −0 meson_options.txt
+2 −2 newlib/libc/argz/argz_create_sep.c
+4 −0 newlib/libc/argz/envz_merge.c
+12 −0 newlib/libc/include/complex.h
+35 −35 newlib/libc/posix/regcomp.c
+1 −1 newlib/libc/posix/regex2.h
+1 −1 newlib/libc/posix/regfree.c
+5 −3 newlib/libc/search/hash.c
+1 −1 newlib/libc/stdlib/chacha_private.h
+7 −0 newlib/libc/stdlib/mallocr.c
+7 −1 newlib/libc/stdlib/nano-mallocr.c
+4 −3 newlib/libc/stdlib/setenv.c
+14 −19 newlib/libc/tinystdio/bufio.c
+1 −1 newlib/libc/tinystdio/fdevopen.c
+1 −1 newlib/libc/tinystdio/fmemopen.c
+14 −6 newlib/libc/xdr/xdr_rec.c
+1 −2 newlib/libm/complex/cacosf.c
+1 −2 newlib/libm/complex/cacosl.c
+1 −3 newlib/libm/complex/ccos.c
+1 −3 newlib/libm/complex/ccosf.c
+1 −3 newlib/libm/complex/ccosh.c
+1 −3 newlib/libm/complex/ccoshf.c
+1 −3 newlib/libm/complex/ccoshl.c
+1 −3 newlib/libm/complex/ccosl.c
+1 −3 newlib/libm/complex/cexp.c
+1 −3 newlib/libm/complex/cexpf.c
+1 −3 newlib/libm/complex/cexpl.c
+1 −3 newlib/libm/complex/clog.c
+1 −3 newlib/libm/complex/clog10.c
+1 −3 newlib/libm/complex/clog10f.c
+1 −3 newlib/libm/complex/clog10l.c
+1 −3 newlib/libm/complex/clogf.c
+1 −3 newlib/libm/complex/clogl.c
+1 −3 newlib/libm/complex/csin.c
+1 −3 newlib/libm/complex/csinf.c
+1 −3 newlib/libm/complex/csinh.c
+1 −3 newlib/libm/complex/csinhf.c
+1 −3 newlib/libm/complex/csinhl.c
+1 −3 newlib/libm/complex/csinl.c
+2 −5 newlib/libm/complex/ctan.c
+2 −5 newlib/libm/complex/ctanf.c
+1 −4 newlib/libm/complex/ctanh.c
+1 −4 newlib/libm/complex/ctanhf.c
+1 −4 newlib/libm/complex/ctanhl.c
+2 −5 newlib/libm/complex/ctanl.c
+6 −0 newlib/libm/ld/common/k_rem_pio2.c
+4 −0 newlib/libm/math/k_rem_pio2.c
+4 −0 newlib/libm/math/kf_rem_pio2.c
+1 −1 newlib/libm/math/s_ceil.c
+1 −1 newlib/libm/math/s_floor.c
+2 −1 newlib/libm/math/s_sqrt.c
+1 −0 newlib/libm/test/ceil_vec.c
+1 −0 newlib/libm/test/floor_vec.c
+28 −0 newlib/libm/test/math.c
+66 −0 picocrt/machine/microblaze/crt0.S
+49 −0 picocrt/machine/microblaze/crt0.c
+42 −0 picocrt/machine/microblaze/crt1.c
+35 −0 picocrt/machine/microblaze/meson.build
+3 −0 picolibc.h.in
+4 −1 picolibc.ld.in
+4 −3 scripts/cross-microblazeel-zephyr-elf.txt
+0 −1 scripts/do-microblazeel-configure
+1 −0 scripts/monitor-e9
+55 −0 scripts/run-microblazeel
+41 −0 semihost/machine/microblaze/bios.S
+19 −0 semihost/machine/microblaze/bios.ld
+ semihost/machine/microblaze/board-qemu-microblaze-demo.dtb
+54 −0 semihost/machine/microblaze/hw-dtb/Makefile
+10 −0 semihost/machine/microblaze/hw-dtb/README
+28 −0 semihost/machine/microblaze/hw-dtb/board-qemu-microblaze-demo.dts
+28 −0 semihost/machine/microblaze/hw-dtb/include/microblaze/memmap.dtsh
+131 −0 semihost/machine/microblaze/hw-dtb/qemu-microblaze-demo.dtsi
+69 −0 semihost/machine/microblaze/meson.build
+80 −0 semihost/machine/microblaze/uart.h
+49 −0 semihost/machine/microblaze/uart_exit.c
+66 −0 semihost/machine/microblaze/uart_io.c
+43 −0 semihost/machine/microblaze/uart_kill.c
+120 −0 semihost/machine/microblaze/uart_stub.c
+43 −0 test/hello.c
+2 −0 test/lock-valid.c
+10 −0 test/malloc_stress.c
+21 −0 test/meson.build
+4 −0 test/printf_scanf.c
+1 −1 test/semihost/semihost-times.c
+4 −0 test/test-except.c
+18 −0 test/test-raise.c
+15 −10 test/tls.c
+1 −0 zephyr/zephyr.cmake

0 comments on commit 7369071

Please sign in to comment.