[compiler-rt] [compiler-rt][ubsan][nfc-ish] Fix a type conversion bug (PR #100665)
Anton Korobeynikov via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 25 16:03:56 PDT 2024
================
@@ -27,7 +27,7 @@
: "=r"(ret) \
: "r"(__value) \
: "x30"); \
- ret; \
+ __typeof(__value) ret; \
----------------
asl wrote:
Oh, no, not here :)
https://github.com/llvm/llvm-project/pull/100665
More information about the llvm-commits
mailing list