Make tblgen error more useful. Patch by B. Scott Michel

llvm-svn: 33295
This commit is contained in:
Chris Lattner 2007-01-17 07:45:12 +00:00
parent fb5249893e
commit 135e17b756

View File

@ -2621,7 +2621,10 @@ public:
assert(N->getExtTypes().size() == 1 && "Multiple types not handled!");
std::string CastType;
switch (N->getTypeNum(0)) {
default: assert(0 && "Unknown type for constant node!");
default:
cerr << "Cannot handle " << getEnumName(N->getTypeNum(0))
<< " type as an immediate constant. Aborting\n";
abort();
case MVT::i1: CastType = "bool"; break;
case MVT::i8: CastType = "unsigned char"; break;
case MVT::i16: CastType = "unsigned short"; break;