@@ -637,7 +637,7 @@ pub enum AggregateKind {
637
637
pub enum Operand {
638
638
Copy ( Place ) ,
639
639
Move ( Place ) ,
640
- Constant ( Constant ) ,
640
+ Constant ( ConstOperand ) ,
641
641
}
642
642
643
643
#[ derive( Clone , Eq , PartialEq ) ]
@@ -653,6 +653,13 @@ impl From<Local> for Place {
653
653
}
654
654
}
655
655
656
+ #[ derive( Clone , Debug , Eq , PartialEq ) ]
657
+ pub struct ConstOperand {
658
+ pub span : Span ,
659
+ pub user_ty : Option < UserTypeAnnotationIndex > ,
660
+ pub const_ : MirConst ,
661
+ }
662
+
656
663
/// Debug information pertaining to a user variable.
657
664
#[ derive( Clone , Debug , Eq , PartialEq ) ]
658
665
pub struct VarDebugInfo {
@@ -714,13 +721,6 @@ pub enum VarDebugInfoContents {
714
721
Const ( ConstOperand ) ,
715
722
}
716
723
717
- #[ derive( Clone , Debug , Eq , PartialEq ) ]
718
- pub struct ConstOperand {
719
- pub span : Span ,
720
- pub user_ty : Option < UserTypeAnnotationIndex > ,
721
- pub const_ : MirConst ,
722
- }
723
-
724
724
// In MIR ProjectionElem is parameterized on the second Field argument and the Index argument. This
725
725
// is so it can be used for both Places (for which the projection elements are of type
726
726
// ProjectionElem<Local, Ty>) and user-provided type annotations (for which the projection elements
@@ -829,13 +829,6 @@ pub type FieldIdx = usize;
829
829
830
830
type UserTypeAnnotationIndex = usize ;
831
831
832
- #[ derive( Clone , Debug , Eq , PartialEq ) ]
833
- pub struct Constant {
834
- pub span : Span ,
835
- pub user_ty : Option < UserTypeAnnotationIndex > ,
836
- pub literal : MirConst ,
837
- }
838
-
839
832
/// The possible branch sites of a [TerminatorKind::SwitchInt].
840
833
#[ derive( Clone , Debug , Eq , PartialEq ) ]
841
834
pub struct SwitchTargets {
@@ -1001,9 +994,9 @@ impl Operand {
1001
994
}
1002
995
}
1003
996
1004
- impl Constant {
997
+ impl ConstOperand {
1005
998
pub fn ty ( & self ) -> Ty {
1006
- self . literal . ty ( )
999
+ self . const_ . ty ( )
1007
1000
}
1008
1001
}
1009
1002
0 commit comments