diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-06-16 13:09:38 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-06-16 13:09:38 +0000 |
commit | 22642efda7e6534076c91bd0d9ee4a244ea44c4a (patch) | |
tree | f379042d103278bfa7fe040ddace8f7ca34aa4cd /gcc/stor-layout.c | |
parent | 5be59a5529f8877a7933cf0131353a0d54383b96 (diff) | |
download | gcc-22642efda7e6534076c91bd0d9ee4a244ea44c4a.tar.gz |
2009-06-16 Basile Starynkevitch <basile@starynkevitch.net>
MELT branch merged with trunk r148523
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@148527 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/stor-layout.c')
-rw-r--r-- | gcc/stor-layout.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c index fab5817d3c2..d65452bc710 100644 --- a/gcc/stor-layout.c +++ b/gcc/stor-layout.c @@ -1547,7 +1547,8 @@ finish_builtin_struct (tree type, const char *name, tree fields, #if 0 /* not yet, should get fixed properly later */ TYPE_NAME (type) = make_type_decl (get_identifier (name), type); #else - TYPE_NAME (type) = build_decl (TYPE_DECL, get_identifier (name), type); + TYPE_NAME (type) = build_decl (BUILTINS_LOCATION, + TYPE_DECL, get_identifier (name), type); #endif TYPE_STUB_DECL (type) = TYPE_NAME (type); layout_decl (TYPE_NAME (type), 0); |