diff options
author | Devang Patel <dpatel@apple.com> | 2008-04-23 20:18:29 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2008-04-23 20:18:29 +0000 |
commit | 6829157f49641c19bc77e7ca5ffc16f2d91c74f2 (patch) | |
tree | e903511c8c61a9b3559880733d7969d6ae196196 /lib/Transforms/Utils/InlineFunction.cpp | |
parent | 9ac0ac5675c73da0d211b3c227aac463b615c77f (diff) |
Check type instead of no. of operands.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50179 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/InlineFunction.cpp')
-rw-r--r-- | lib/Transforms/Utils/InlineFunction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Utils/InlineFunction.cpp b/lib/Transforms/Utils/InlineFunction.cpp index ff494ce8af..435be0c05c 100644 --- a/lib/Transforms/Utils/InlineFunction.cpp +++ b/lib/Transforms/Utils/InlineFunction.cpp @@ -456,7 +456,7 @@ bool llvm::InlineFunction(CallSite CS, CallGraph *CG, const TargetData *TD) { // uses of the returned value. if (!TheCall->use_empty()) { ReturnInst *R = Returns[0]; - if (R->getNumOperands() > 1) { + if (isa<StructType>(TheCall->getType())) { // Multiple return values. while (!TheCall->use_empty()) { GetResultInst *GR = cast<GetResultInst>(TheCall->use_back()); |