rapx/analysis/utils/intrinsic_id.rs
1/*
2 * NOTE: This should be updated with different rustc versions.
3 */
4pub const DROP: usize = 2435;
5pub const DROP_IN_PLACE: usize = 3040;
6pub const ASSUME_INIT_DROP: usize = 2294;
7pub const DEALLOC: usize = 134;
8pub const MANUALLYDROP: usize = 2259;
9pub const CALL_MUT: usize = 4039;
10pub const CLONE: usize = 3217;
11pub const COPY_FROM_NONOVERLAPPING: usize = 2982;
12pub const COPY_TO_NONOVERLAPPING: usize = 2980;
13pub const COPY_TO: usize = 2979;
14pub const COPY_FROM: usize = 2981;