We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17659c7 commit b329c69Copy full SHA for b329c69
1 file changed
library/core/src/lib.rs
@@ -26,7 +26,8 @@
26
//! assumptions about their semantics: For `memcpy`, `memmove`, `memset`, `memcmp`, and `bcmp`, if
27
//! the `n` parameter is 0, the function is assumed to not be UB. Furthermore, for `memcpy`, if
28
//! source and target pointer are equal, the function is assumed to not be UB.
29
-//! (Note that these are [standard assumptions](https://reviews.llvm.org/D86993) among compilers.)
+//! (Note that these are standard assumptions among compilers:
30
+//! [clang](https://reviews.llvm.org/D86993) and [GCC](https://gcc.gnu.org/bugzilla/show_bug.cgi?id=32667) do the same.)
31
//! These functions are often provided by the system libc, but can also be provided by the
32
//! [compiler-builtins crate](https://crates.io/crates/compiler_builtins).
33
//! Note that the library does not guarantee that it will always make these assumptions, so Rust
0 commit comments