On Sat, May 26, 2007 at 12:35:32AM +0200, Thomas Neumann wrote:
> Hi,
> 
> as of revision 125076, tree-vect-transform.c contains the following code
> in line 2010:
> 
> enum tree_code code, code1 = CODE_FOR_nothing, code2 = CODE_FOR_nothing;

   SVN can help you find out who added that piece of code. Use the SVN command
"blame" for bugs/regressions, "praise" for improvements or bug fixes and
"annotate" when you're not sure if the change is good or not. SVN blame
gives:

124784       uros   enum tree_code code, code1 = CODE_FOR_nothing, code2 = 
CODE_FOR_nothing;

   SVN log tells you:

r124784 | uros | 2007-05-17 08:31:05 +0200 (tor, 17 maj 2007) | 75 lines

        PR tree-optimization/24659
[...]

   And sure enough, the gcc-patches mailing list archive has this:
<URL:http://gcc.gnu.org/ml/gcc-patches/2007-05/msg00966.html>. So go ahead
and ask the patch author directly. If you don't have that message in your
mailbox, you can download it from the archive as raw text and demangle it
with this script:

#!/bin/sh

sed -e '1,/^$/ { s/ at /@/g' -e 's/ dot /./g' -e '}'

(Don't ask me why I didn't write it using #!/bin/sed instead.)

-- 
Rask Ingemann Lambertsen

Reply via email to