rust/tests/codegen/var-names.rs

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

16 lines
356 B
Rust
Raw Normal View History

//@ compile-flags: -O -C no-prepopulate-passes
#![crate_type = "lib"]
// CHECK-LABEL: define{{.*}}i32 @test(i32 noundef %a, i32 noundef %b)
#[no_mangle]
pub fn test(a: u32, b: u32) -> u32 {
let c = a + b;
// CHECK: %c = add i32 %a, %b
let d = c;
let e = d * a;
2023-05-15 19:15:28 +00:00
// CHECK-NEXT: %e = mul i32 %c, %a
e
2023-05-15 19:15:28 +00:00
// CHECK-NEXT: ret i32 %e
}