aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/InstCombine/InstCombineCalls.cpp
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
commit1d3dcfe4246b4d45fa78a8dfd0a11c7fff842c15 (patch)
tree620c196cbe494c112b8cb30866ac81d1fc654024 /lib/Transforms/InstCombine/InstCombineCalls.cpp
parent0575429d14f2a81a1808133920d2820b1f83357f (diff)
downloadexternal_llvm-1d3dcfe4246b4d45fa78a8dfd0a11c7fff842c15.zip
external_llvm-1d3dcfe4246b4d45fa78a8dfd0a11c7fff842c15.tar.gz
external_llvm-1d3dcfe4246b4d45fa78a8dfd0a11c7fff842c15.tar.bz2
Inline the 'hasIncompatibleWithVarArgsAttrs' method into its only uses. And some minor comment reformatting.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170516 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/InstCombine/InstCombineCalls.cpp')
-rw-r--r--lib/Transforms/InstCombine/InstCombineCalls.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Transforms/InstCombine/InstCombineCalls.cpp b/lib/Transforms/InstCombine/InstCombineCalls.cpp
index 3c8166e..7babf32 100644
--- a/lib/Transforms/InstCombine/InstCombineCalls.cpp
+++ b/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;
}