diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-09-25 20:38:59 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-09-25 20:38:59 +0000 |
commit | 853a8c5f2ee9fa16f7c4c1fca658db40d4c73743 (patch) | |
tree | 4c948fad8ce7cdf186af1da071af29ff0b3586ea /lib/Transforms/InstCombine | |
parent | 1a37d7e807ad6cc71fe3cffdf6674644c46a60eb (diff) | |
download | external_llvm-853a8c5f2ee9fa16f7c4c1fca658db40d4c73743.zip external_llvm-853a8c5f2ee9fa16f7c4c1fca658db40d4c73743.tar.gz external_llvm-853a8c5f2ee9fa16f7c4c1fca658db40d4c73743.tar.bz2 |
Move Attribute::typeIncompatible inside of the Attributes class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164629 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/InstCombine')
-rw-r--r-- | lib/Transforms/InstCombine/InstCombineCalls.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Transforms/InstCombine/InstCombineCalls.cpp b/lib/Transforms/InstCombine/InstCombineCalls.cpp index 486dd13..cf83756 100644 --- a/lib/Transforms/InstCombine/InstCombineCalls.cpp +++ b/lib/Transforms/InstCombine/InstCombineCalls.cpp @@ -1037,7 +1037,7 @@ bool InstCombiner::transformConstExprCastCall(CallSite CS) { if (!CallerPAL.isEmpty() && !Caller->use_empty()) { Attributes RAttrs = CallerPAL.getRetAttributes(); - if (RAttrs & Attribute::typeIncompatible(NewRetTy)) + if (RAttrs & Attributes::typeIncompatible(NewRetTy)) return false; // Attribute not compatible with transformed value. } @@ -1067,7 +1067,7 @@ bool InstCombiner::transformConstExprCastCall(CallSite CS) { return false; // Cannot transform this parameter value. Attributes Attrs = CallerPAL.getParamAttributes(i + 1); - if (Attrs & Attribute::typeIncompatible(ParamTy)) + if (Attrs & Attributes::typeIncompatible(ParamTy)) return false; // Attribute not compatible with transformed value. // If the parameter is passed as a byval argument, then we have to have a @@ -1141,7 +1141,7 @@ bool InstCombiner::transformConstExprCastCall(CallSite CS) { // If the return value is not being used, the type may not be compatible // with the existing attributes. Wipe out any problematic attributes. - RAttrs &= ~Attribute::typeIncompatible(NewRetTy); + RAttrs &= ~Attributes::typeIncompatible(NewRetTy); // Add the new return attributes. if (RAttrs) |