2
0
Fork 0
mirror of https://github.com/ii64/sonic.git synced 2026-06-21 00:46:43 +08:00

fix: adjust inline limits to finish compile in a reasonable time

This commit is contained in:
chenzhuoyu 2021-06-04 18:17:54 +08:00
parent 66d6c789d4
commit 565aeffad4
2 changed files with 4 additions and 4 deletions

View file

@ -96,8 +96,8 @@ const (
)
const (
_MAX_STACK = 10 // cutoff at 10 levels of nesting types
_MAX_ILBUF = 250000 // cutoff at 250k of IL instructions
_MAX_STACK = 5 // cutoff at 5 levels of nesting types
_MAX_ILBUF = 100000 // cutoff at 100k of IL instructions
)
var _OpNames = [256]string {

View file

@ -86,8 +86,8 @@ const (
)
const (
_MAX_STACK = 10 // cutoff at 10 levels of nesting types
_MAX_ILBUF = 500000 // cutoff at half a million of IL instructions
_MAX_STACK = 5 // cutoff at 5 levels of nesting types
_MAX_ILBUF = 100000 // cutoff at 100k of IL instructions
)
var _OpNames = [256]string {