tests/codegen/enum-* -> enum/enum-*
This commit is contained in:
parent
03a57254b5
commit
06711615aa
11 changed files with 0 additions and 0 deletions
27
tests/codegen/enum/enum-discriminant-value.rs
Normal file
27
tests/codegen/enum/enum-discriminant-value.rs
Normal file
|
@ -0,0 +1,27 @@
|
|||
// Verify that DIEnumerator uses isUnsigned flag when appropriate.
|
||||
//
|
||||
// compile-flags: -g -C no-prepopulate-passes
|
||||
|
||||
#[repr(i64)]
|
||||
pub enum I64 {
|
||||
I64Min = i64::MIN,
|
||||
I64Max = i64::MAX,
|
||||
}
|
||||
|
||||
#[repr(u64)]
|
||||
pub enum U64 {
|
||||
U64Min = u64::MIN,
|
||||
U64Max = u64::MAX,
|
||||
}
|
||||
|
||||
fn main() {
|
||||
let _a = I64::I64Min;
|
||||
let _b = I64::I64Max;
|
||||
let _c = U64::U64Min;
|
||||
let _d = U64::U64Max;
|
||||
}
|
||||
|
||||
// CHECK: !DIEnumerator(name: "I64Min", value: -9223372036854775808)
|
||||
// CHECK: !DIEnumerator(name: "I64Max", value: 9223372036854775807)
|
||||
// CHECK: !DIEnumerator(name: "U64Min", value: 0, isUnsigned: true)
|
||||
// CHECK: !DIEnumerator(name: "U64Max", value: 18446744073709551615, isUnsigned: true)
|
Loading…
Add table
Add a link
Reference in a new issue