mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Added comment
This commit is contained in:
parent
07dd9c7ef5
commit
de5d83f21a
1 changed files with 5 additions and 0 deletions
|
@ -1057,6 +1057,11 @@
|
|||
;; another one is assigned to that arg's old value, for example:
|
||||
;; a = 1, b = 2, c = a
|
||||
;; In this case the code would need to assign to a temporary variable
|
||||
;;
|
||||
;; Right now we just play it safe and always assign to temporary variables,
|
||||
;; even when we don't need to. I suppose in theory the C compiler can
|
||||
;; figure that out (??) but it would be cleaner overall if we could here.
|
||||
;; Something to consider for the future.
|
||||
(apply string-append
|
||||
(map
|
||||
(lambda (param arg)
|
||||
|
|
Loading…
Add table
Reference in a new issue