Fix Transforms/InstCombine/2007-05-18-CastFoldBug.ll, a bug that devastates
authorChris Lattner <sabre@nondot.org>
Sat, 19 May 2007 06:51:32 +0000 (06:51 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 19 May 2007 06:51:32 +0000 (06:51 +0000)
objc code due to the way the FE lowers objc message sends.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37256 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/InstructionCombining.cpp

index 08905576d221350a2df6fe1fae6460b685182f18..db105adf7ff4195f2f151b31ed40aa0ac6e1812a 100644 (file)
@@ -7773,6 +7773,14 @@ bool InstCombiner::transformConstExprCastCall(CallSite CS) {
   const FunctionType *FT = Callee->getFunctionType();
   const Type *OldRetTy = Caller->getType();
 
+  const FunctionType *ActualFT =
+    cast<FunctionType>(cast<PointerType>(CE->getType())->getElementType());
+  
+  // If the parameter attributes don't match up, don't do the xform.  We don't
+  // want to lose an sret attribute or something.
+  if (FT->getParamAttrs() != ActualFT->getParamAttrs())
+    return false;
+  
   // Check to see if we are changing the return type...
   if (OldRetTy != FT->getReturnType()) {
     if (Callee->isDeclaration() && !Caller->use_empty() &&