cf6d6050f7
* The WASI targets deal with the `main` symbol a bit differently than native so some `codegen` and `assembly` tests have been ignored. * All `ignore-emscripten` directives have been updated to `ignore-wasm32` to be more clear that all wasm targets are ignored and it's not just Emscripten. * Most `ignore-wasm32-bare` directives are now gone. * Some ignore directives for wasm were switched to `needs-unwind` instead. * Many `ignore-wasm32*` directives are removed as the tests work with WASI as opposed to `wasm32-unknown-unknown`.
25 lines
756 B
Rust
25 lines
756 B
Rust
// This tests that debug info for "c-like" enums is properly emitted.
|
|
// This is ignored for the fallback mode on MSVC due to problems with PDB.
|
|
|
|
//
|
|
//@ ignore-msvc
|
|
//@ ignore-wasi wasi codegens the main symbol differently
|
|
|
|
//@ compile-flags: -g -C no-prepopulate-passes
|
|
|
|
// CHECK-LABEL: @main
|
|
// CHECK: {{.*}}DICompositeType{{.*}}tag: DW_TAG_enumeration_type,{{.*}}name: "E",{{.*}}flags: DIFlagEnumClass,{{.*}}
|
|
// CHECK: {{.*}}DIEnumerator{{.*}}name: "A",{{.*}}value: {{[0-9].*}}
|
|
// CHECK: {{.*}}DIEnumerator{{.*}}name: "B",{{.*}}value: {{[0-9].*}}
|
|
// CHECK: {{.*}}DIEnumerator{{.*}}name: "C",{{.*}}value: {{[0-9].*}}
|
|
|
|
#![allow(dead_code)]
|
|
#![allow(unused_variables)]
|
|
#![allow(unused_assignments)]
|
|
|
|
enum E { A, B, C }
|
|
|
|
pub fn main() {
|
|
let e = E::C;
|
|
}
|