1
1
use rustc_ast as ast;
2
2
use rustc_hir:: LangItem ;
3
3
use rustc_middle:: bug;
4
- use rustc_middle:: mir:: interpret:: { LitToConstError , LitToConstInput } ;
4
+ use rustc_middle:: mir:: interpret:: LitToConstInput ;
5
5
use rustc_middle:: ty:: { self , ScalarInt , TyCtxt , TypeVisitableExt as _} ;
6
6
use tracing:: trace;
7
7
@@ -10,11 +10,11 @@ use crate::builder::parse_float_into_scalar;
10
10
pub ( crate ) fn lit_to_const < ' tcx > (
11
11
tcx : TyCtxt < ' tcx > ,
12
12
lit_input : LitToConstInput < ' tcx > ,
13
- ) -> Result < ty:: Const < ' tcx > , LitToConstError > {
13
+ ) -> ty:: Const < ' tcx > {
14
14
let LitToConstInput { lit, ty, neg } = lit_input;
15
15
16
16
if let Err ( guar) = ty. error_reported ( ) {
17
- return Ok ( ty:: Const :: new_error ( tcx, guar) ) ;
17
+ return ty:: Const :: new_error ( tcx, guar) ;
18
18
}
19
19
20
20
let trunc = |n| {
@@ -28,8 +28,8 @@ pub(crate) fn lit_to_const<'tcx>(
28
28
let result = width. truncate ( n) ;
29
29
trace ! ( "trunc result: {}" , result) ;
30
30
31
- Ok ( ScalarInt :: try_from_uint ( result, width)
32
- . unwrap_or_else ( || bug ! ( "expected to create ScalarInt from uint {:?}" , result) ) )
31
+ ScalarInt :: try_from_uint ( result, width)
32
+ . unwrap_or_else ( || bug ! ( "expected to create ScalarInt from uint {:?}" , result) )
33
33
} ;
34
34
35
35
let valtree = match ( lit, ty. kind ( ) ) {
@@ -57,7 +57,7 @@ pub(crate) fn lit_to_const<'tcx>(
57
57
}
58
58
( ast:: LitKind :: Int ( n, _) , ty:: Uint ( _) ) | ( ast:: LitKind :: Int ( n, _) , ty:: Int ( _) ) => {
59
59
let scalar_int =
60
- trunc ( if neg { ( n. get ( ) as i128 ) . overflowing_neg ( ) . 0 as u128 } else { n. get ( ) } ) ? ;
60
+ trunc ( if neg { ( n. get ( ) as i128 ) . overflowing_neg ( ) . 0 as u128 } else { n. get ( ) } ) ;
61
61
ty:: ValTree :: from_scalar_int ( scalar_int)
62
62
}
63
63
( ast:: LitKind :: Bool ( b) , ty:: Bool ) => ty:: ValTree :: from_scalar_int ( ( * b) . into ( ) ) ,
@@ -68,9 +68,9 @@ pub(crate) fn lit_to_const<'tcx>(
68
68
ty:: ValTree :: from_scalar_int ( bits)
69
69
}
70
70
( ast:: LitKind :: Char ( c) , ty:: Char ) => ty:: ValTree :: from_scalar_int ( ( * c) . into ( ) ) ,
71
- ( ast:: LitKind :: Err ( guar) , _) => return Ok ( ty:: Const :: new_error ( tcx, * guar) ) ,
72
- _ => return Ok ( ty:: Const :: new_misc_error ( tcx) ) ,
71
+ ( ast:: LitKind :: Err ( guar) , _) => return ty:: Const :: new_error ( tcx, * guar) ,
72
+ _ => return ty:: Const :: new_misc_error ( tcx) ,
73
73
} ;
74
74
75
- Ok ( ty:: Const :: new_value ( tcx, valtree, ty) )
75
+ ty:: Const :: new_value ( tcx, valtree, ty)
76
76
}
0 commit comments