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:
0a20cab
)
[project @ 2001-01-15 09:16:03 by simonmar]
author
simonmar
<unknown>
Mon, 15 Jan 2001 09:16:03 +0000
(09:16 +0000)
committer
simonmar
<unknown>
Mon, 15 Jan 2001 09:16:03 +0000
(09:16 +0000)
Improve the test for "still has jump to fast entry point": it was
turning up a false positive.
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
44f4693
..
6e5da21
100644
(file)
--- a/
ghc/driver/mangler/ghc-asm.lprl
+++ b/
ghc/driver/mangler/ghc-asm.lprl
@@
-1084,7
+1084,7
@@
sub mangle_asm {
# references to fast-entry point.
# (questionable re hppa and mips...)
print STDERR "still has jump to fast entry point:\n$c"
- if $c =~ /${T_US}${symb}_fast/;
+ if $c =~ /\b${T_US}${symb}_fast/;
}
print OUTASM $T_HDR_entry;