Remove workaround for 9.2 compiler bug.
authorChris Hanson <org/chris-hanson/cph>
Fri, 16 Nov 2018 07:27:17 +0000 (23:27 -0800)
committerChris Hanson <org/chris-hanson/cph>
Fri, 16 Nov 2018 07:27:17 +0000 (23:27 -0800)
src/runtime/string.scm

index 09891c0b7fed728743fbef6a3c014e59dfc1ba6a..e48610c51b2419718c4abfc8b7cb677b9a04a15e 100644 (file)
@@ -1165,11 +1165,8 @@ USA.
   (fix:- jamo-trailing-end jamo-trailing-start))
 
 (define-integrable jamo-tbase (fix:- jamo-trailing-start 1))
-
-;;; These can be integrable after 9.3 is released.
-;;; Otherwise they trip a bug in the 9.2 compiler.
-(define jamo-tcount (fix:+ jamo-trailing-size 1))
-(define jamo-ncount (fix:* jamo-vowel-size jamo-tcount))
+(define-integrable jamo-tcount (fix:+ jamo-trailing-size 1))
+(define-integrable jamo-ncount (fix:* jamo-vowel-size jamo-tcount))
 
 (define (jamo-leading? char)
   (and (fix:>= (char->integer char) jamo-leading-start)