Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Nope, code was clean with -Wall on arm-9 compiler (i.e. gcc).

Interesting thought now you say that (no warning) - only found it because of seeing the pattern (apropos the article) and from that having a good idea what was causing it (knowing the int was assembled a byte at a time).

If I had a criticism of modern compilers, it's the blizzard of uninteresting warnings ("strncmp takes const char star, did you really mean to pass it unsigned char star") that make people want to not use -Wall.



All warnings are uninteresting until they're not.

> ("strncmp takes const char star, did you really mean to pass it unsigned char star")

This warning (with a different function) actually saved my bacon once, pointing me to a very obscure bug in the code.

My practice is to use -Wall and make sure that the code compiles without any warnings at all. Then I don't have a deluge of warnings to wade through.


Remember -Wall isn't all. -Wall -Wextra is the new -Wall.

I recommend asan too, where possible.


Why do compilers do stupid things like this? Seriously don't get why -Wall isn't all warnings.


Oh, you're right. I need to update my build system.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: