>>49
inline assembly usage heavily declined with optimization of
mainline compilers(GCC/Intel/Clang) that were outperforming hand crafted assembler in most of cases, plus the SIMD intrinsics allowed easily use opcodes within the C api.
Early on, it was probably more efficient to use C as macro assembler and play with various asm blocks, but modern C optimizes
extremely well.