From 6db8367a09597a8e705be23a62fde8782c9ded60 Mon Sep 17 00:00:00 2001 From: simonmar Date: Mon, 15 Jan 2001 09:16:03 +0000 Subject: [PATCH] [project @ 2001-01-15 09:16:03 by simonmar] Improve the test for "still has jump to fast entry point": it was turning up a false positive. --- ghc/driver/mangler/ghc-asm.lprl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc/driver/mangler/ghc-asm.lprl b/ghc/driver/mangler/ghc-asm.lprl index 44f4693..6e5da21 100644 --- 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; -- 1.7.10.4