ソースを参照

Fix small "presentation" issues

Lucas Stadler 8 年 前
コミット
e81d07632f
共有1 個のファイルを変更した2 個の追加2 個の削除を含む
  1. 2 2
      scm/inc/compiler.scm

+ 2 - 2
scm/inc/compiler.scm

@ -37,7 +37,7 @@
37 37
  (emit "movl $0,  %eax")                ; zero %eax to put the result of the comparison into
38 38
  (emit "sete %al")                      ; set low byte of %eax to 1 if cmp succeeded
39 39
  (emit "sall $~a,  %eax" boolean-shift) ; construct correctly tagged boolean value
40
  (emit "xorl $31, %eax"))
40
  (emit "xorl $~a, %eax" #b0011111))
41 41
42 42
(define (emit-expr x)
43 43
  (cond
@ -66,7 +66,7 @@
66 66
       ((boolean?)
67 67
        (emit-expr (primcall-operand1 x))
68 68
        (emit "andl $~a, %eax" #b0011111)
69
        (emit "cmpl $~a,  %eax" #b0011111)
69
        (emit "cmpl $~a, %eax" #b0011111)
70 70
        (emit-compare))
71 71
       ))))
72 72