5962c575282f

Make all the arrows in comments consistent
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Mon, 18 Apr 2016 15:26:29 +0000
parents f3aa63a7ee45
children e45304805b40
branches/tags (none)
files src/wam/compiler.lisp

Changes

--- a/src/wam/compiler.lisp	Mon Apr 18 15:22:44 2016 +0000
+++ b/src/wam/compiler.lisp	Mon Apr 18 15:26:29 2016 +0000
@@ -368,14 +368,14 @@
 ;;;
 ;;; Turns:
 ;;;
-;;;   X0 -> p(X1, X2)
-;;;   X1 -> A
-;;;   X2 -> q(X1, X3)
-;;;   X3 -> B
+;;;   X0 <- p(X1, X2)
+;;;   X1 <- A
+;;;   X2 <- q(X1, X3)
+;;;   X3 <- B
 ;;;
 ;;; into something like:
 ;;;
-;;;   X2 -> q(X1, X3), X0 -> p(X1, X2)
+;;;   X2 <- q(X1, X3), X0 <- p(X1, X2)
 
 (defun find-dependencies (assignments)
   "Return a list of dependencies amongst the given registers.
@@ -431,7 +431,7 @@
 ;;;
 ;;; It turns:
 ;;;
-;;;   X2 -> q(X1, X3), X0 -> p(X1, X2), A3 <- X4
+;;;   X2 <- q(X1, X3), X0 <- p(X1, X2), A3 <- X4
 ;;;
 ;;; into something like:
 ;;;