1/* Test for invalid instruction 00. */
2int main(int argc, char *argv[])
3{
4  asm volatile (".hword 0\n");
5  return 0;
6}
7
8