On Tue, Aug 27, 2024 at 6:54 AM Richard Sandiford <richard.sandif...@arm.com> wrote: > > "H.J. Lu" <hjl.to...@gmail.com> writes: > >> > append function_regexp ")" > >> > } elseif { [string equal $line "..."] } { > >> > append function_regexp ".*" > >> > + } elseif { [regexp "^.L.*" $line] } { > >> > >> {^\.L} would be more precise than "^.L.*". > > > > I tried {^\.L}. It didn't work. I used "^.L" in v3. > > Why didn't it work though? "^.L.*" matches "ALL" as well as ".L". > > Richard
I tried it again by typing it by hand. It works now. Fixed in v4: https://gcc.gnu.org/pipermail/gcc-patches/2024-August/661586.html Thanks. -- H.J.