forked from OSchip/llvm-project
parent
37b384cd66
commit
4a68f9b606
|
@ -1986,6 +1986,7 @@ bool BitcodeReader::ParseFunctionBody(Function *F) {
|
||||||
} while(OpNum != Record.size());
|
} while(OpNum != Record.size());
|
||||||
|
|
||||||
const Type *ReturnType = F->getReturnType();
|
const Type *ReturnType = F->getReturnType();
|
||||||
|
// Handle multiple return values. FIXME: Remove in LLVM 3.0.
|
||||||
if (Vs.size() > 1 ||
|
if (Vs.size() > 1 ||
|
||||||
(ReturnType->isStructTy() &&
|
(ReturnType->isStructTy() &&
|
||||||
(Vs.empty() || Vs[0]->getType() != ReturnType))) {
|
(Vs.empty() || Vs[0]->getType() != ReturnType))) {
|
||||||
|
|
Loading…
Reference in New Issue