aboutsummaryrefslogtreecommitdiff
path: root/src/interp/g-timer.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/g-timer.boot')
-rw-r--r--src/interp/g-timer.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/g-timer.boot b/src/interp/g-timer.boot
index 49f73575..91b48708 100644
--- a/src/interp/g-timer.boot
+++ b/src/interp/g-timer.boot
@@ -99,7 +99,7 @@ normalizeStatAndStringify t ==
t := roundStat t
t = 0.0 => '"0"
FORMAT(nil,'"~,2F",t)
- INTP t =>
+ integer? t =>
K := 1024
M := K*K
t > 9*M => strconc(STRINGIMAGE QUOTIENT(t + 512*K,M), '"M")
@@ -109,7 +109,7 @@ normalizeStatAndStringify t ==
significantStat t ==
RNUMP t => (t > 0.01)
- INTP t => (t > 100)
+ integer? t => (t > 100)
true
roundStat t ==