We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fd330a0 + 873d000 commit baf46bcCopy full SHA for baf46bc
1 file changed
langs/a86/ast.rkt
@@ -30,12 +30,12 @@
30
(values a x)))
31
32
(define check:cmov
33
- (λ (a1 a2 n)
+ (λ (a a1 a2 n)
34
(unless (register? a1)
35
(error n "expects register; given ~v" a1))
36
(unless (or (register? a2) (offset? a2))
37
(error n "expects register or offset; given ~v" a2))
38
- (values a1 a2)))
+ (values a a1 a2)))
39
40
(define check:arith
41
(λ (a a1 a2 n)
@@ -263,7 +263,6 @@
263
(nasm-label? x)
264
(not (register? x))))
265
266
-
267
(provide (rename-out [a86:instruction? instruction?]))
268
(define (a86:instruction? x)
269
(or (instruction? x)
0 commit comments