We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73c4dba commit 9f406cbCopy full SHA for 9f406cb
llvm/lib/Target/IA64/IA64ISelPattern.cpp
@@ -816,7 +816,8 @@ SDOperand ISel::BuildConstmulSequence(SDOperand N) {
816
// do the transformation, filling out 'ops'
817
lefevre(boothEncodedString, ops);
818
819
- SDOperand results[ops.size()]; // temporary results (of adds/subs of shifts)
+ assert(ops.size() < 80 && "constmul code has gone haywire\n");
820
+ SDOperand results[80]; // temporary results (of adds/subs of shifts)
821
822
// now turn 'ops' into DAG bits
823
for(unsigned i=0; i<ops.size(); i++) {
0 commit comments