Compiler Explorer, Explored
It wasn’t long ago that we introduced you to a web site, the Godbolt compiler explorer, that allows the visitor to compile code using a slew of compilers and compare their output. We suspect some number of readers said, “Wow! I can use that!”, while perhaps everyone else said, “Huh?” Well if you were in the second group, you ought to watch [What’s a Creel’s] video below where he walks through using the website . He looks at four different algorithms using four different compilers and it is a good example of how you might use the tool to make decisions about how you write software. If you missed our original post about the tool, you can still catch up . Even if you don’t care much about the compiler explorer, this is an opportunity to gaze over an experienced programmer’s shoulder as he looks at some C code and generated assembly code. The results might surprise you. In the first example, CLANG did some great optimization but other compilers created a lot of code by comparison. One of