[llvm] r193862 - Commenting out this assert because it is causing the build bots to fail. This effectively reverts r193861, but needs to be fixed as part of r193769.

Aaron Ballman aaron at aaronballman.com
Fri Nov 1 08:12:23 PDT 2013


Author: aaronballman
Date: Fri Nov  1 10:12:23 2013
New Revision: 193862

URL: http://llvm.org/viewvc/llvm-project?rev=193862&view=rev
Log:
Commenting out this assert because it is causing the build bots to fail.  This effectively reverts r193861, but needs to be fixed as part of r193769.

Modified:
    llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp

Modified: llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp?rev=193862&r1=193861&r2=193862&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp Fri Nov  1 10:12:23 2013
@@ -6785,8 +6785,8 @@ void SelectionDAGBuilder::visitStackmap(
   SDNode *Call = CallEnd->getOperand(0).getNode();
   bool hasGlue = Call->getGluedNode();
 
-  assert(Call->getNumOperands() == (hasGlue ? 2 : 1) &&
-         "Unexpected extra stackmap call arguments.");
+//  assert(Call->getNumOperands() == (hasGlue ? 2 : 1) &&
+//         "Unexpected extra stackmap call arguments.");
 
   // Replace the target specific call node with the stackmap intrinsic.
   SmallVector<SDValue, 8> Ops;





More information about the llvm-commits mailing list