On Wed, 6 Aug 2014, Richard Biener wrote:

> 
> $subject, applied.

Err, too fast.  Fixed.

Richard.

2014-08-06  Richard Biener  <rguent...@suse.de>

        * gimple-match-head.c (gimple_simplify): Fix implementation.

Index: gcc/gimple-match-head.c
===================================================================
--- gcc/gimple-match-head.c     (revision 213671)
+++ gcc/gimple-match-head.c     (working copy)
@@ -475,7 +475,10 @@ gimple_simplify (enum built_in_function
       tree decl = builtin_decl_implicit (fn);
       if (decl)
        {
-         tree res = fold_builtin_n (UNKNOWN_LOCATION, decl, &arg0, 2, false);
+         tree args[2];
+         args[0] = arg0;
+         args[1] = arg1;
+         tree res = fold_builtin_n (UNKNOWN_LOCATION, decl, args, 2, false);
          if (res)
            {
              /* fold_builtin_n wraps the result inside a NOP_EXPR.  */

Reply via email to