On Wed, Feb 04, 2015 at 09:00:57AM +0100, Jakub Jelinek wrote: > On Tue, Feb 03, 2015 at 10:23:22PM -0500, David Edelsohn wrote: > > On Tue, Feb 3, 2015 at 5:55 PM, Andreas Schwab <sch...@linux-m68k.org> > > wrote: > > > FAIL: gcc.dg/builtins-58.c scan-assembler-not pow > > > > > > $ grep pow builtins-58.s > > > .machine power4 > > > > Any suggestions? > > Perhaps tighten up the regexp, like (untested)? > /* { dg-final { scan-assembler-not "pow\[^a-zA-Z0-9\]" } } */
That won't work if the file ends with that "pow". We can just use \M. I'll send a patch (also for pr46728-6.c). Segher