Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 95aca05

Browse files
authoredDec 28, 2024··
Added a codegen test for optimization with const arrays
Closes #107208
1 parent 4e0bc49 commit 95aca05

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
 

‎tests/codegen/const-array.rs

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
//@ compile-flags: -O
2+
3+
#![crate_type = "lib"]
4+
5+
const LUT: [u8; 2] = [
6+
1,
7+
1,
8+
];
9+
10+
// CHECK-LABEL: @decode
11+
#[no_mangle]
12+
pub fn decode(i: u8) -> u8 {
13+
// CHECK: start:
14+
// CHECK-NEXT: icmp
15+
// CHECK-NEXT: select
16+
// CHECK-NEXT: ret
17+
if i < 2 {
18+
LUT[i as usize]
19+
} else {
20+
2
21+
}
22+
}

0 commit comments

Comments
 (0)
Please sign in to comment.