Raymond Toy pushed to branch issue-163-add-command-line-version at cmucl / cmucl
Commits:
1d9b25b2 by Raymond Toy at 2023-02-28T11:58:30-08:00
Add comment about adding --version
It's added because it's a common command line option for GNU.
- - - - -
1 changed file:
- src/code/commandline.lisp
Changes:
=====================================
src/code/commandline.lisp
=====================================
@@ -403,7 +403,8 @@
(defswitch "version" #'version-switch-demon
"Prints the cmucl version and exits")
-;; Make --version work too since that's a common option.
+;; Make --version work too since that's a common command line option
+;; for GNU software.
(defswitch "-version" #'version-switch-demon
- "Prints the cmucl version and exits")
+ "Prints the cmucl version and exits; same as -version")
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/1d9b25b290a9955742ec7ca…
--
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/1d9b25b290a9955742ec7ca…
You're receiving this email because of your account on gitlab.common-lisp.net.
Raymond Toy pushed to branch issue-170-clean-up-x86-float-compare at cmucl / cmucl
Commits:
8d18d306 by Raymond Toy at 2023-02-28T11:46:39-08:00
Keep single-float/double-float cases together
Just minor reordering the of the float compare frobs; keep the
single-float and double-float cases together instead of ordering them
by the operation. I find this easier to read and think about.
- - - - -
1 changed file:
- src/compiler/x86/float-sse2.lisp
Changes:
=====================================
src/compiler/x86/float-sse2.lisp
=====================================
@@ -972,8 +972,8 @@
(inst jmp ,yep target)
(emit-label not-lab)))))))))
(frob < single comiss :b :nb)
- (frob < double comisd :b :nb)
(frob > single comiss :a :na)
+ (frob < double comisd :b :nb)
(frob > double comisd :a :na))
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/8d18d306a79505c3874c1b0…
--
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/8d18d306a79505c3874c1b0…
You're receiving this email because of your account on gitlab.common-lisp.net.