Skip to content

Commit b7f3a92

Browse files
committed
add a codegen check for absence of memcpy in String::push
1 parent d2204ce commit b7f3a92

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

tests/codegen/string-push.rs

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
//! Check that `String::push` is optimized enough not to call `memcpy`.
2+
3+
//@ compile-flags: -O
4+
#![crate_type = "lib"]
5+
6+
// CHECK-LABEL: @string_push_does_not_call_memcpy
7+
#[no_mangle]
8+
pub fn string_push_does_not_call_memcpy(s: &mut String, ch: char) {
9+
// CHECK-NOT: call void @llvm.memcpy
10+
s.push(ch);
11+
}

0 commit comments

Comments
 (0)