mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-11 13:37:07 +00:00
Make tblgen error more useful. Patch by B. Scott Michel
llvm-svn: 33295
This commit is contained in:
parent
fb5249893e
commit
135e17b756
@ -2621,7 +2621,10 @@ public:
|
|||||||
assert(N->getExtTypes().size() == 1 && "Multiple types not handled!");
|
assert(N->getExtTypes().size() == 1 && "Multiple types not handled!");
|
||||||
std::string CastType;
|
std::string CastType;
|
||||||
switch (N->getTypeNum(0)) {
|
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::i1: CastType = "bool"; break;
|
||||||
case MVT::i8: CastType = "unsigned char"; break;
|
case MVT::i8: CastType = "unsigned char"; break;
|
||||||
case MVT::i16: CastType = "unsigned short"; break;
|
case MVT::i16: CastType = "unsigned short"; break;
|
||||||
|
Loading…
Reference in New Issue
Block a user