2025-02-24 09:26:54 +00:00
|
|
|
//@ add-core-stubs
|
2021-10-27 18:37:18 +01:00
|
|
|
//@ compile-flags: --target mips-unknown-linux-gnu
|
|
|
|
|
//@ needs-llvm-components: mips
|
|
|
|
|
|
|
|
|
|
#![feature(no_core, lang_items, rustc_attrs)]
|
|
|
|
|
#![crate_type = "rlib"]
|
|
|
|
|
#![no_core]
|
|
|
|
|
|
2025-02-24 09:26:54 +00:00
|
|
|
extern crate minicore;
|
|
|
|
|
use minicore::*;
|
2021-10-27 18:37:18 +01:00
|
|
|
|
|
|
|
|
unsafe fn main() {
|
|
|
|
|
asm!("");
|
|
|
|
|
//~^ ERROR inline assembly is not stable yet on this architecture
|
|
|
|
|
}
|