Looking at the Solidity compiler Github repository, I see that the project also integrates an LLL compiler.
This has made me wonder whether Solidity gets reduced to LLL in the process of compilation to EVM bytecode?
I've read that LLL serves as a wrapper around EVM ASM, so intuitively it would make sense to compile Solidity to LLL?
Or is the LLL compiler just included as part of the Solidity project, because it is too small to serve as a project in itself?
Actually I have the same question, but I think the answer is Yes! In Solidity you can use an assembly segment
Where you can write code as you do in LLL, same syntax and pretty cheap GAS cost, at least 30% in my experience.
Result in Remix IDE
Screencapture.png Assembly in Solidity by Javier Guajardo