Add explicit abort so optimized build knows that the function does not return

llvm-svn: 2605
This commit is contained in:
Chris Lattner 2002-05-10 18:53:55 +00:00
parent e5bf51fc4f
commit 94b4c5fe83
1 changed files with 1 additions and 0 deletions

View File

@ -101,6 +101,7 @@ struct InstVisitor {
#include "llvm/Instruction.def"
default: assert(0 && "Unknown instruction type encountered!");
abort();
}
}