Avoid warning message

llvm-svn: 3085
This commit is contained in:
Chris Lattner 2002-07-25 16:30:45 +00:00
parent ba614ba122
commit f200f7b11a
1 changed files with 1 additions and 0 deletions

View File

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