1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Avoid warning message

llvm-svn: 3085
This commit is contained in:
Chris Lattner 2002-07-25 16:30:45 +00:00
parent 2d7eb28490
commit 0d3708d9dc

View File

@ -114,6 +114,7 @@ static std::string getConstStrValue(const Constant* CPV) {
default:
std::cerr << "Unknown constant type: " << CPV << "\n";
abort();
return "";
}
}