diff options
author | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-04-05 14:34:28 +0000 |
---|---|---|
committer | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-04-05 14:34:28 +0000 |
commit | 5cca4f1d6b5fadd343664fa8d5a37e2757afd8bd (patch) | |
tree | d59575b30811e75d6006d6597944a2dcf35830cb /gcc/stor-layout.c | |
parent | cfcdd3f1744df4056d6742a8ea854262d70f9f89 (diff) | |
download | gcc-5cca4f1d6b5fadd343664fa8d5a37e2757afd8bd.tar.gz |
* stor-layout.c (self_referential_size): Fix 2010-07-13 commit.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@171988 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/stor-layout.c')
-rw-r--r-- | gcc/stor-layout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c index ed36c5b3a5a..a225dbfbd8b 100644 --- a/gcc/stor-layout.c +++ b/gcc/stor-layout.c @@ -367,7 +367,7 @@ self_referential_size (tree size) VEC_safe_push (tree, gc, size_functions, fndecl); /* Replace the original expression with a call to the size function. */ - return build_call_expr_loc_vec (input_location, fndecl, args); + return build_call_expr_loc_vec (UNKNOWN_LOCATION, fndecl, args); } /* Take, queue and compile all the size functions. It is essential that |