projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4d872cb
)
Remove unused variable from Prim_fixnum_lsh.
author
Matt Birkholz
<matt@birkholz.chandler.az.us>
Wed, 15 Feb 2012 01:19:26 +0000
(18:19 -0700)
committer
Matt Birkholz
<matt@birkholz.chandler.az.us>
Wed, 15 Feb 2012 01:19:26 +0000
(18:19 -0700)
src/microcode/fixnum.c
patch
|
blob
|
history
diff --git
a/src/microcode/fixnum.c
b/src/microcode/fixnum.c
index 062866014f17d76cddd073f4d39491a3679c7517..3af0dae673de0e9c57ad78c4092ee3e9569f34b7 100644
(file)
--- a/
src/microcode/fixnum.c
+++ b/
src/microcode/fixnum.c
@@
-281,7
+281,6
@@
DEFINE_PRIMITIVE ("FIXNUM-LSH", Prim_fixnum_lsh, 2, 2, 0)
{
unsigned long x = (arg_unsigned_fixnum (1));
long y = (arg_fixnum (2));
- unsigned long z;
LOGICAL_RESULT (FIXNUM_LSH (x, y));
}