From e500892e18e994781760819e33098322728796e8 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 2 Feb 2021 14:43:55 -0300 Subject: Optimization/simplification of 'getbaseline' By producing absolute line information at regular intervals, a simple division can compute the correct entry for a given instruction. --- ldebug.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ldebug.h') diff --git a/ldebug.h b/ldebug.h index 8e912a8e..974960e9 100644 --- a/ldebug.h +++ b/ldebug.h @@ -29,10 +29,10 @@ /* ** MAXimum number of successive Instructions WiTHout ABSolute line -** information. +** information. (A power of two allows fast divisions.) */ #if !defined(MAXIWTHABS) -#define MAXIWTHABS 120 +#define MAXIWTHABS 128 #endif -- cgit v1.2.3-55-g6feb