[PATCH] D128960: [BOLT] Fix instrumentation problem with floating point

Maksim Panchenko via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 5 17:18:25 PDT 2022


maksfb added a comment.

This change broke `user-func-reorder.c` test on some platforms. `-mno-sse` forced some compilers to emit a call to `memset()` that was not provided by our runtime. According to documentation, freestanding environment should still provide `memcpy`, `memmove`,
`memset` and `memcmp`, so in the worst case we can expect the compiler to emit calls to those.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D128960



More information about the llvm-commits mailing list