Make them all pub

This commit is contained in:
Scott McMurray
2017-11-25 05:53:53 -08:00
parent a35d63583f
commit 51a0396d2a
6 changed files with 24 additions and 48 deletions

View File

@@ -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)
}