projects
/
ghc-hetmet.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
31285af
)
[project @ 2001-09-25 20:16:19 by sof]
author
sof
<unknown>
Tue, 25 Sep 2001 20:16:19 +0000
(20:16 +0000)
committer
sof
<unknown>
Tue, 25 Sep 2001 20:16:19 +0000
(20:16 +0000)
Stick with trad. function syntax in prev commit; avoids unnecessary Perl versioning issues
ghc/driver/mangler/ghc-asm.lprl
patch
|
blob
|
history
diff --git
a/ghc/driver/mangler/ghc-asm.lprl
b/ghc/driver/mangler/ghc-asm.lprl
index
446ab45
..
ca26221
100644
(file)
--- a/
ghc/driver/mangler/ghc-asm.lprl
+++ b/
ghc/driver/mangler/ghc-asm.lprl
@@
-1443,7
+1443,7
@@
sub rev_tbl {
local ($sign, $base, $digits) = ($1, $2, $3);
$base = (10, 8, 16)[length $base];
local ($hi, $lo) = (0, 0);
- foreach $i (split //, $digits) {
+ foreach $i (split(//, $digits)) {
$j = $lo * $base + $i;
$lo = $j % 4294967296;
$hi = $hi * $base + ($j - $lo) / 4294967296;