提交 af1d2730 编写于 作者: B bpittore

8004051: assert(_oprs_len[mode] < maxNumberOfOperands) failed: array overflow

Summary: assert is triggered when number of register based arguments passed to a java method exceeds 16.
Reviewed-by: roland, vladidan
上级 3abaf1b1
......@@ -2259,7 +2259,7 @@ class LIR_OpVisitState: public StackObj {
typedef enum { inputMode, firstMode = inputMode, tempMode, outputMode, numModes, invalidMode = -1 } OprMode;
enum {
maxNumberOfOperands = 16,
maxNumberOfOperands = 20,
maxNumberOfInfos = 4
};
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册