This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Strange behavior for scan-tree-dump testing
- From: Ian Lance Taylor <iant at google dot com>
- To: "Mohamed Shafi" <shafitvm at gmail dot com>
- Cc: gcc at gcc dot gnu dot org
- Date: 26 Feb 2007 21:35:24 -0800
- Subject: Re: Strange behavior for scan-tree-dump testing
- References: <ba0bd44d0702220002g485a0fe6h275f20d72d780b55@mail.gmail.com> <ba0bd44d0702252017n78a41d7aie62c8bf3e5cd0939@mail.gmail.com>
"Mohamed Shafi" <shafitvm@gmail.com> writes:
> /* { dg-final { scan-tree-dump "b4 = 6.3e+1" "gimple" } } */
Note that scan-tree-dump takes a regular expression. So you are
looking for '6' followed by any character followed by '3' followed by
one or more 'e's followed by '1'.
Ian