Memory Safe Inline Assembly
Fil-C Memory Safety • C/C++ Compatibility • Modern Tooling Home Installing Documentation Releases GitHub Meet Fil Memory Safe Inline Assembly NOTE: This is a pre-release feature. The Fil-C 0.679 release does not ship with this feature. To test this feature, you need to build from source. GCC and clang both support an incredibly powerful inline assembly syntax. For example: unsigned rotate(unsigned x, unsigned char c) { asm("roll %1, %0" : "+r"(x) : "c"(c) : "cc"); return x; } Instructs
Read full article →