"privileged operation")
 DO_ERROR_INFO(special_op_exception, SIGILL, ILL_ILLOPN,
              "special operation exception")
-DO_ERROR_INFO(translation_exception, SIGILL, ILL_ILLOPN,
-             "translation exception")
 
 #ifdef CONFIG_64BIT
 DO_ERROR_INFO(transaction_exception, SIGILL, ILL_ILLOPN,
        do_trap(regs, SIGFPE, si_code, "floating point exception");
 }
 
+void translation_exception(struct pt_regs *regs)
+{
+       /* May never happen. */
+       die(regs, "Translation exception");
+}
+
 void illegal_op(struct pt_regs *regs)
 {
        siginfo_t info;