diff options
author | Richard Guenther <rguenther@suse.de> | 2009-08-11 11:39:43 +0000 |
---|---|---|
committer | Laurent Guerby <guerby@gcc.gnu.org> | 2009-08-11 11:39:43 +0000 |
commit | ac8f7e421b35b2f8b045058e83bf7111cc4e2b38 (patch) | |
tree | d6ef97de0b531bf4baee54debe4a8e8b94439b0c /gcc/builtins.c | |
parent | fddeba6da892f7a90a05da13863bf9bc073e316b (diff) | |
download | gcc-ac8f7e421b35b2f8b045058e83bf7111cc4e2b38.zip gcc-ac8f7e421b35b2f8b045058e83bf7111cc4e2b38.tar.gz gcc-ac8f7e421b35b2f8b045058e83bf7111cc4e2b38.tar.bz2 |
re PR bootstrap/40788 (ICE on sparc: tree check: expected class 'expression', have 'declaration' (var_decl) in gimplify_va_arg_expr, at builtins.c:5107)
2009-08-11 Richard Guenther <rguenther@suse.de>
PR bootstrap/40788
* builtins.c (gimplify_va_arg_expr): Do not call
SET_EXPR_LOCATION.
From-SVN: r150648
Diffstat (limited to 'gcc/builtins.c')
-rw-r--r-- | gcc/builtins.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/builtins.c b/gcc/builtins.c index 57c0c1b..1349c33 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -5104,7 +5104,6 @@ gimplify_va_arg_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p) return GS_ALL_DONE; *expr_p = targetm.gimplify_va_arg_expr (valist, type, pre_p, post_p); - SET_EXPR_LOCATION (*expr_p, loc); return GS_OK; } } |