Make them all pub
This commit is contained in:
@@ -99,12 +99,10 @@ intrinsics! {
|
||||
}
|
||||
|
||||
#[cfg_attr(not(stage0), lang = "i128_div")]
|
||||
#[allow(dead_code)]
|
||||
fn rust_i128_div(a: i128, b: i128) -> i128 {
|
||||
pub fn rust_i128_div(a: i128, b: i128) -> i128 {
|
||||
__divti3(a, b)
|
||||
}
|
||||
#[cfg_attr(not(stage0), lang = "i128_rem")]
|
||||
#[allow(dead_code)]
|
||||
fn rust_i128_rem(a: i128, b: i128) -> i128 {
|
||||
pub fn rust_i128_rem(a: i128, b: i128) -> i128 {
|
||||
__modti3(a, b)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user