Assembly
See article by Matt Godbolt.
strength reduction: taking expensive operations and transforming them to use less expensive ones
g++ main.cxx -O2 -std=c++23 -c -S -o - | c++filt | grep -vE '\s+\.'
See article by Matt Godbolt.
strength reduction: taking expensive operations and transforming them to use less expensive ones
g++ main.cxx -O2 -std=c++23 -c -S -o - | c++filt | grep -vE '\s+\.'