Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions hoax-plus/compile-ops.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@
(theend (gensym 'theend)))
(seq (Pop r8)
(assert-natural r8)
(assert-char rax)

; special case for length = 0
(Cmp r8 0)
Expand Down
1 change: 1 addition & 0 deletions hoax-plus/test/test-runner.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@
(check-equal? (run '"") "")
(check-equal? (run '"fred") "fred")
(check-equal? (run '"wilma") "wilma")
(check-equal? (run '(make-string 0 #t)) 'err)
(check-equal? (run '(make-string 0 #\f)) "")
(check-equal? (run '(make-string 3 #\f)) "fff")
(check-equal? (run '(make-string 3 #\g)) "ggg")
Expand Down
1 change: 1 addition & 0 deletions iniquity-plus/compile-ops.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@
(theend (gensym 'theend)))
(seq (Pop r8)
(assert-natural r8)
(assert-char rax)

; special case for length = 0
(Cmp r8 0)
Expand Down
1 change: 1 addition & 0 deletions iniquity-plus/test/test-runner.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@
(check-equal? (run '"") "")
(check-equal? (run '"fred") "fred")
(check-equal? (run '"wilma") "wilma")
(check-equal? (run '(make-string 0 #t)) 'err)
(check-equal? (run '(make-string 0 #\f)) "")
(check-equal? (run '(make-string 3 #\f)) "fff")
(check-equal? (run '(make-string 3 #\g)) "ggg")
Expand Down
1 change: 1 addition & 0 deletions knock-plus/compile-ops.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@
(theend (gensym 'theend)))
(seq (Pop r8)
(assert-natural r8)
(assert-char rax)

; special case for length = 0
(Cmp r8 0)
Expand Down
1 change: 1 addition & 0 deletions knock-plus/test/test-runner.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@
(check-equal? (run '"") "")
(check-equal? (run '"fred") "fred")
(check-equal? (run '"wilma") "wilma")
(check-equal? (run '(make-string 0 #t)) 'err)
(check-equal? (run '(make-string 0 #\f)) "")
(check-equal? (run '(make-string 3 #\f)) "fff")
(check-equal? (run '(make-string 3 #\g)) "ggg")
Expand Down