[PATCH] D122968: [AArch64][SelectionDAG] Add target-specific implementation of srem

Eli Friedman via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Apr 18 08:44:33 PDT 2022


efriedma reopened this revision.
efriedma added a comment.
This revision is now accepted and ready to land.

If you want to try out some stuff yourself, on Linux, it isn't too hard to run stuff using qemu-user.  Get a cross-compile toolchain (e.g. https://developer.arm.com/-/media/Files/downloads/gnu/11.2-2022.02/binrel/gcc-arm-11.2-2022.02-x86_64-aarch64-none-linux-gnu.tar.xz ).  The do something like:

clang --gcc-toolchain=/path/to/toolchain --target=aarch64-none-linux-gnu test.c -o test -static
qemu-aarch64 test

----

I'll run this through some tests today.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D122968/new/

https://reviews.llvm.org/D122968



More information about the llvm-commits mailing list