summaryrefslogtreecommitdiffstats
path: root/tests/codegen/bpf-alu32.rs
blob: c68bffd03e289e445ea86cf3aff04ddea704e05a (plain)
1
2
3
4
5
6
7
8
9
10
11
// only-bpf
#![crate_type = "lib"]
#![feature(bpf_target_feature)]
#![no_std]

#[no_mangle]
#[target_feature(enable = "alu32")]
// CHECK: define i8 @foo(i8 returned %arg) unnamed_addr #0 {
pub unsafe fn foo(arg: u8) -> u8 {
    arg
}