summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2013-11-01 15:12:23 +0000
committerAaron Ballman <aaron@aaronballman.com>2013-11-01 15:12:23 +0000
commit307cfaeaf0bc629357725fb0c471e45319d48ff1 (patch)
tree0dc4126bddb8652995db33586bcb929d71805018 /lib
parent8d13de3f0900e674920921bfb2d1b4c1893c0f27 (diff)
downloadllvm-307cfaeaf0bc629357725fb0c471e45319d48ff1.tar.gz
llvm-307cfaeaf0bc629357725fb0c471e45319d48ff1.tar.bz2
llvm-307cfaeaf0bc629357725fb0c471e45319d48ff1.tar.xz
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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193862 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
index 59d72b476b..d1783da9b6 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
@@ -6785,8 +6785,8 @@ void SelectionDAGBuilder::visitStackmap(const CallInst &CI) {
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;