summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms/InstCombine
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-12-19 08:57:40 +0000
committerBill Wendling <isanbard@gmail.com>2012-12-19 08:57:40 +0000
commitd97b75d816adaeecd156a07c0fef34c208cd287d (patch)
tree824c282aa5c712e65f7511c986c79260736ce9ac /llvm/lib/Transforms/InstCombine
parent1ed72076b4769e2e1d5c07ea4e1d8f87da1a7fb5 (diff)
downloadbcm5719-llvm-d97b75d816adaeecd156a07c0fef34c208cd287d.tar.gz
bcm5719-llvm-d97b75d816adaeecd156a07c0fef34c208cd287d.zip
Inline the 'hasIncompatibleWithVarArgsAttrs' method into its only uses. And some minor comment reformatting.
llvm-svn: 170516
Diffstat (limited to 'llvm/lib/Transforms/InstCombine')
-rw-r--r--llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp b/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
index 3c8166e943a..7babf321597 100644
--- a/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
+++ b/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
@@ -1103,7 +1103,8 @@ bool InstCombiner::transformConstExprCastCall(CallSite CS) {
if (CallerPAL.getSlot(i - 1).Index <= FT->getNumParams())
break;
Attribute PAttrs = CallerPAL.getSlot(i - 1).Attrs;
- if (PAttrs.hasIncompatibleWithVarArgsAttrs())
+ // Check if it has an attribute that's incompatible with varargs.
+ if (PAttrs.hasAttribute(Attribute::StructRet))
return false;
}
OpenPOWER on IntegriCloud