According to this wiki page, bus error can be caused by unaligned memory access. The wiki page gives an example about how to trigger a bus error. In the example, we have to enable alignment checking to see the bus error. What if we disable such alignment checking? The program seems to work properly. I have a program access unaligned memory frequently and it is used by quite a few people, but no one reports bus error or other weird results to me. The question is if we disable alignment checking, what is the side effect of unaligned memory?