From bcf65b28180183f52ffe5c5862e97f869d522617 Mon Sep 17 00:00:00 2001 From: rustbot Date: Wed, 17 Mar 2021 12:28:19 +0000 Subject: [PATCH] ices/82869.rs: fixed with errors === stdout === === stderr === error[E0425]: cannot find value `c` in this scope --> /home/runner/work/glacier/glacier/ices/82869.rs:4:42 | 4 | asm!("add {:d}, {:d}, d0", out(vreg) c, in(vreg) a, in("d1") { | ^ help: a local variable with a similar name exists: `a` error: invalid register class `vreg`: unknown register class --> /home/runner/work/glacier/glacier/ices/82869.rs:4:32 | 4 | asm!("add {:d}, {:d}, d0", out(vreg) c, in(vreg) a, in("d1") { | ^^^^^^^^^^^ error: invalid register class `vreg`: unknown register class --> /home/runner/work/glacier/glacier/ices/82869.rs:4:45 | 4 | asm!("add {:d}, {:d}, d0", out(vreg) c, in(vreg) a, in("d1") { | ^^^^^^^^^^ error: invalid register `d1`: unknown register --> /home/runner/work/glacier/glacier/ices/82869.rs:4:57 | 4 | asm!("add {:d}, {:d}, d0", out(vreg) c, in(vreg) a, in("d1") { | _________________________________________________________^ 5 | | || {}; 6 | | b 7 | | }); | |_____^ error[E0601]: `main` function not found in crate `82869` --> /home/runner/work/glacier/glacier/ices/82869.rs:1:1 | 1 | / #![feature(asm)] 2 | | 3 | | fn aarch64(a: f64, b: f64) { 4 | | asm!("add {:d}, {:d}, d0", out(vreg) c, in(vreg) a, in("d1") { ... | 7 | | }); 8 | | } | |_^ consider adding a `main` function to `/home/runner/work/glacier/glacier/ices/82869.rs` error: aborting due to 5 previous errors Some errors have detailed explanations: E0425, E0601. For more information about an error, try `rustc --explain E0425`. ============== --- {ices => fixed}/82869.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/82869.rs (100%) diff --git a/ices/82869.rs b/fixed/82869.rs similarity index 100% rename from ices/82869.rs rename to fixed/82869.rs