All Questions
1 question
20
votes
3
answers
2k
views
Must I think about compiled machine code when I write my code?
For example I've got following code:
auto z = [](int x) -> int {
if (x > 0) {
switch (x) {
case 2: return 5;
case 3: return 6;
default: return 1;
...