rustc_codegen_llvm: give names to non-alloca variable values.
This commit is contained in:
parent
1fb3c4ec7c
commit
eedf555d0c
6 changed files with 73 additions and 13 deletions
15
src/test/codegen/var-names.rs
Normal file
15
src/test/codegen/var-names.rs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
// compile-flags: -O -C no-prepopulate-passes
|
||||
|
||||
#![crate_type = "lib"]
|
||||
|
||||
// CHECK-LABEL: define i32 @test(i32 %a, i32 %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;
|
||||
// CHECK-NEXT: %e = mul i32 %c, %a
|
||||
e
|
||||
// CHECK-NEXT: ret i32 %e
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue