1
Fork 0

Make OpTy field op public for priroda

This commit is contained in:
bjorn3 2018-10-18 14:17:01 +02:00
parent 66910ba686
commit ea51e32043

View file

@ -291,7 +291,7 @@ impl<Tag> Operand<Tag> {
#[derive(Copy, Clone, Debug, Hash, PartialEq, Eq)]
pub struct OpTy<'tcx, Tag=()> {
crate op: Operand<Tag>, // ideally we'd make this private, but const_prop needs this
pub op: Operand<Tag>, // This is used by [priroda](https://github.com/oli-obk/priroda)
pub layout: TyLayout<'tcx>,
}