Code Sample: ```C __thread int vals[3]; /* causes a crash */ __thread int val; /* no problem */ int main(void) { return 0; } ``` Resulting Error: `LLVM ERROR: ERROR: Constant unimplemented for type: [3 x i32]`