From b57916c8de923aa2bbf32a8fac66b50eb622bfa2 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 25 Jul 2002 15:39:09 +0000 Subject: [PATCH] *** empty log message *** llvm-svn: 3082 --- include/llvm/Support/InstVisitor.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/include/llvm/Support/InstVisitor.h b/include/llvm/Support/InstVisitor.h index 883a6fe4afc..1876415f137 100644 --- a/include/llvm/Support/InstVisitor.h +++ b/include/llvm/Support/InstVisitor.h @@ -101,13 +101,12 @@ struct InstVisitor { // RetTy visit(Instruction &I) { switch (I.getOpcode()) { + default: assert(0 && "Unknown instruction type encountered!"); + abort(); // Build the switch statement using the Instruction.def file... #define HANDLE_INST(NUM, OPCODE, CLASS) \ case Instruction::OPCODE:return ((SubClass*)this)->visit##OPCODE((CLASS&)I); #include "llvm/Instruction.def" - - default: assert(0 && "Unknown instruction type encountered!"); - abort(); } }