Skip to content

Commit

Permalink
Bless aarch64 asm test
Browse files Browse the repository at this point in the history
  • Loading branch information
nbdd0121 committed Mar 7, 2024
1 parent 626a5f5 commit 05a549b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion library/stdarch
Submodule stdarch updated 38 files
+2 −1 crates/core_arch/src/aarch64/neon/mod.rs
+1 −3 crates/core_arch/src/arm_shared/neon/mod.rs
+0 −1 crates/core_arch/src/lib.rs
+0 −2 crates/core_arch/src/mod.rs
+163 −5 crates/core_arch/src/powerpc/altivec.rs
+1 −1 crates/core_arch/src/powerpc/vsx.rs
+0 −16 crates/core_arch/src/simd_llvm.rs
+1 −1 crates/core_arch/src/v64.rs
+1 −5 crates/core_arch/src/wasm32/simd128.rs
+30 −4 crates/core_arch/src/x86/avx.rs
+2 −4 crates/core_arch/src/x86/avx2.rs
+2 −4 crates/core_arch/src/x86/avx512bf16.rs
+1 −1 crates/core_arch/src/x86/avx512bitalg.rs
+3 −3 crates/core_arch/src/x86/avx512bw.rs
+2 −4 crates/core_arch/src/x86/avx512cd.rs
+30 −3 crates/core_arch/src/x86/avx512f.rs
+2 −1 crates/core_arch/src/x86/avx512vbmi.rs
+2 −1 crates/core_arch/src/x86/avx512vbmi2.rs
+2 −4 crates/core_arch/src/x86/avx512vnni.rs
+1 −1 crates/core_arch/src/x86/avx512vpopcntdq.rs
+1 −5 crates/core_arch/src/x86/f16c.rs
+1 −1 crates/core_arch/src/x86/fma.rs
+1 −1 crates/core_arch/src/x86/gfni.rs
+3 −1 crates/core_arch/src/x86/mod.rs
+1 −4 crates/core_arch/src/x86/sha.rs
+76 −7 crates/core_arch/src/x86/sse.rs
+30 −4 crates/core_arch/src/x86/sse2.rs
+2 −4 crates/core_arch/src/x86/sse3.rs
+2 −4 crates/core_arch/src/x86/sse41.rs
+2 −2 crates/core_arch/src/x86/sse42.rs
+19 −4 crates/core_arch/src/x86/sse4a.rs
+2 −2 crates/core_arch/src/x86/ssse3.rs
+1 −4 crates/core_arch/src/x86_64/avx.rs
+2 −1 crates/core_arch/src/x86_64/avx2.rs
+2 −1 crates/core_arch/src/x86_64/avx512f.rs
+11 −2 crates/core_arch/src/x86_64/sse2.rs
+1 −4 crates/core_arch/src/x86_64/sse41.rs
+48 −0 triagebot.toml
8 changes: 4 additions & 4 deletions tests/ui/asm/aarch64/parse-error.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -130,17 +130,17 @@ LL | asm!("{1}", in("x0") foo, const bar);
| |
| explicit register argument

error: expected one of `clobber_abi`, `const`, `in`, `inlateout`, `inout`, `lateout`, `options`, `out`, or `sym`, found `""`
error: expected one of `clobber_abi`, `const`, `in`, `inlateout`, `inout`, `label`, `lateout`, `options`, `out`, or `sym`, found `""`
--> $DIR/parse-error.rs:66:29
|
LL | asm!("", options(), "");
| ^^ expected one of 9 possible tokens
| ^^ expected one of 10 possible tokens

error: expected one of `clobber_abi`, `const`, `in`, `inlateout`, `inout`, `lateout`, `options`, `out`, or `sym`, found `"{}"`
error: expected one of `clobber_abi`, `const`, `in`, `inlateout`, `inout`, `label`, `lateout`, `options`, `out`, or `sym`, found `"{}"`
--> $DIR/parse-error.rs:68:33
|
LL | asm!("{}", in(reg) foo, "{}", out(reg) foo);
| ^^^^ expected one of 9 possible tokens
| ^^^^ expected one of 10 possible tokens

error: asm template must be a string literal
--> $DIR/parse-error.rs:70:14
Expand Down

0 comments on commit 05a549b

Please sign in to comment.