s/Scalar::Raw/Scalar::Int

This commit is contained in:
oli 2020-11-01 16:57:03 +00:00
parent 7e8b15e050
commit 0dcf78ba87

View File

@ -186,7 +186,7 @@ pub(crate) fn codegen_const_value<'tcx>(
}
match x {
Scalar::Raw(int) => {
Scalar::Int(int) => {
CValue::const_val(fx, layout, int)
}
Scalar::Ptr(ptr) => {