Illegal instruction problem

Hi Philip,

The most likely cause of this is that you're using undefined behavior (e.g. an uninitialized variable, array out of bounds, etc) in your code that the optimizer is detecting. Please see:

for more information.

-Chris