1
Fork 0

Rollup merge of #112474 - ldm0:ldm_enum_debuginfo_128_support, r=compiler-errors

Support 128-bit enum variant in debuginfo codegen

fixes #111600
This commit is contained in:
Michael Goulet 2023-06-16 12:53:22 -07:00 committed by GitHub
commit 3eb8c2ae10
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 41 additions and 11 deletions

View file

@ -15,6 +15,7 @@ pub trait ConstMethods<'tcx>: BackendTypes {
fn const_i32(&self, i: i32) -> Self::Value;
fn const_u32(&self, i: u32) -> Self::Value;
fn const_u64(&self, i: u64) -> Self::Value;
fn const_u128(&self, i: u128) -> Self::Value;
fn const_usize(&self, i: u64) -> Self::Value;
fn const_u8(&self, i: u8) -> Self::Value;
fn const_real(&self, t: Self::Type, val: f64) -> Self::Value;