mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-23 20:34:06 +00:00
Make simple_global_asm even simpler
Windows builder croaked. This change tries to fix that by actually calling the global_asm-defined function so the symbol doesn't get optimized away, if that is in fact what was happening. Additionally, we provide an empty main() for non-x86 arches.
This commit is contained in:
parent
24a89a015e
commit
63a074791e
@ -881,6 +881,7 @@ impl<'a, 'tcx> HashStable<StableHashingContext<'a, 'tcx>> for hir::Item {
|
||||
hir::ItemFn(..) |
|
||||
hir::ItemMod(..) |
|
||||
hir::ItemForeignMod(..) |
|
||||
hir::ItemGlobalAsm(..) |
|
||||
hir::ItemTy(..) |
|
||||
hir::ItemEnum(..) |
|
||||
hir::ItemStruct(..) |
|
||||
@ -925,6 +926,7 @@ impl_stable_hash_for!(enum hir::Item_ {
|
||||
ItemFn(fn_decl, unsafety, constness, abi, generics, body_id),
|
||||
ItemMod(module),
|
||||
ItemForeignMod(foreign_mod),
|
||||
ItemGlobalAsm(global_asm),
|
||||
ItemTy(ty, generics),
|
||||
ItemEnum(enum_def, generics),
|
||||
ItemStruct(variant_data, generics),
|
||||
@ -1083,6 +1085,7 @@ impl_stable_hash_for!(enum hir::def::Def {
|
||||
Upvar(def_id, index, expr_id),
|
||||
Label(node_id),
|
||||
Macro(def_id, macro_kind),
|
||||
GlobalAsm(def_id),
|
||||
Err
|
||||
});
|
||||
|
||||
|
@ -298,6 +298,7 @@ impl<'a, 'tcx> HashStable<StableHashingContext<'a, 'tcx>> for EntryKind<'tcx> {
|
||||
EntryKind::ForeignImmStatic |
|
||||
EntryKind::ForeignMutStatic |
|
||||
EntryKind::ForeignMod |
|
||||
EntryKind::GlobalAsm |
|
||||
EntryKind::Field |
|
||||
EntryKind::Type => {
|
||||
// Nothing else to hash here.
|
||||
|
@ -9,19 +9,21 @@
|
||||
// except according to those terms.
|
||||
|
||||
#![feature(global_asm)]
|
||||
#![feature(naked_functions)]
|
||||
|
||||
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
|
||||
global_asm!(r#"
|
||||
.global foo
|
||||
foo:
|
||||
jmp baz
|
||||
ret
|
||||
"#);
|
||||
|
||||
extern {
|
||||
fn foo();
|
||||
}
|
||||
|
||||
#[no_mangle]
|
||||
pub extern fn baz() {}
|
||||
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
|
||||
fn main() { unsafe { foo(); } }
|
||||
|
||||
#[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
|
||||
fn main() {}
|
||||
|
Loading…
Reference in New Issue
Block a user