rust/tests/codegen/const_scalar_pair.rs

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

9 lines
335 B
Rust
Raw Normal View History

2023-05-26 14:53:24 +00:00
//@ compile-flags: --crate-type=lib -Copt-level=0 -Zmir-opt-level=0 -C debuginfo=2
// Test that we don't generate a memory allocation for the constant
// and read the fields from that, but instead just create the value pair directly.
2023-05-26 14:53:24 +00:00
pub fn foo() -> (i32, i32) {
// CHECK: ret { i32, i32 } { i32 1, i32 2 }
2023-05-26 14:53:24 +00:00
const { (1, 2) }
}