You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 7, 2024. It is now read-only.
Currently llvm-as seems to be not so weird, and clang seems to have some different opinion on instructions with binutils, at least on AArch64:
BFC, which is a pseudo instruction in ARMv8.2 (translated to a real instruction to v8.0), will be produced by clang in v8.0 mode, but rejected by GNU as in v8.0 mode.
PMULL, which is a instruction in ARMv8.0 extension, will be produced by clang when -march=armv8-a+crc, but will only be accepted by GNU as when -march=armv8-a+aes. (of course this can be solved by +crc+aes).
The text was updated successfully, but these errors were encountered:
Currently llvm-as seems to be not so weird, and clang seems to have some different opinion on instructions with binutils, at least on AArch64:
The text was updated successfully, but these errors were encountered: