Hi! On Fri, Nov 10, 2023 at 04:12:07PM +0100, Grischa Göbel via Gcc-help wrote: > Beside the usual introductions to programming i would like to show the > reader examples of disassemblies generated by the compiler, so that the > reader gets a deeper understanding on whats actually happening under the > hood. You should not typically look at the result of disassembling something at all -- instead, look at the assmebler code the compiler generates! This code typically is available to you under the same licence you have for the source code that produced it. See the GCC Runtime License Exception <https://www.gnu.org/licenses/gcc-exception-3.1.en.html> for way more detail than you care for :-) Segher