-
Hi,
I gor this error wwhen I was trying to build this package `cargo build --release `on Arm Platform (Jetson device). I'm new to rust and webgpu. Kindly let me know how to get overcome this error
…
-
When I use kstool to assemble the following instruction with a comment, I got an error:
```
$ kstool arm64 "MOV X29, SP ;hello"
ERROR: failed on ks_asm() with count = 0, error = 'Invalid mnemonic…
-
This is mostly a question. After reading about vale's safety claims, and it's various comparisons with C++ and rust, I'm wondering how it plans to handle inline assembly, which is necessary for many C…
-
This is a documented GCC feature that partially doesn't work with Clang:
https://gcc.gnu.org/onlinedocs/gcc/Extended-Asm.html#Output-Operands
https://www.felixcloutier.com/documents/gcc-asm.html#put…
-
I wanted to port my Yash kernel thing to alloy, but I need inline assembly to make things a little easier... so inline assembly; how should we go about this?
-
This is a potential LLVM12 regression, as it had previously worked fine.
```zig
// zig build-obj crash.zig -target powerpc-freestanding-eabi
export fn sysret(value: u32, errored: bool) void {
…
fengb updated
2 months ago
-
Right now the assembly is in a stand alone `.S` file with AT&T style. To easily make it compilable under windows without depending on gcc, i think those code could be inlined inside a Rust function.
-
| | |
|--------------------|----|
| Bugzilla Link | [PR46028](https://bugs.llvm.org/show_bug.cgi?id=46028) |
| Status | NEW |
| Importance | P normal |
|…
-
The `CAsm` constructor of [`CStatement`](http://hackage.haskell.org/package/language-c-0.5.0/docs/Language-C-Syntax-AST.html#t:CStatement), and the [`CAssemblyStatement`](http://hackage.haskell.org/pa…
-
As initially reported on LKML: https://lore.kernel.org/202411180620.8uhr11le-lkp@intel.com/
```c
void foo(unsigned char *var)
{
asm("shr%z1 %1" : "+m"(*var));
}
```
```
$ gcc -c -o /de…