Files
rust/tests/codegen-llvm/vec_pop_push_noop.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
568 B
Rust
Raw Normal View History

//@ compile-flags: -Copt-level=3
//@ revisions: new old
//@ [old] max-llvm-major-version: 21
//@ [new] min-llvm-version: 22
#![crate_type = "lib"]
#[no_mangle]
// CHECK-LABEL: @noop(
pub fn noop(v: &mut Vec<u8>) {
2024-03-29 15:37:43 -07:00
// CHECK-NOT: grow_one
// CHECK-NOT: call
// old: tail call void @llvm.assume
2024-03-29 15:37:43 -07:00
// CHECK-NOT: grow_one
// CHECK-NOT: call
// CHECK: {{ret|[}]}}
if let Some(x) = v.pop() {
v.push(x)
}
}
#[no_mangle]
// CHECK-LABEL: @push_byte(
pub fn push_byte(v: &mut Vec<u8>) {
2024-03-29 15:37:43 -07:00
// CHECK: call {{.*}}grow_one
v.push(3);
}