diff options
author | Richard Kenner <kenner@vlsi1.ultra.nyu.edu> | 2004-03-18 21:49:49 +0000 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2004-03-18 16:49:49 -0500 |
commit | d3b6a5fb669a3b71839e69e4bfbe0c414829c834 (patch) | |
tree | 7188e629d11d853e4910061ea2b383fa565eaef8 /gcc/stor-layout.c | |
parent | 138f5109c1658d81d959c6a6a990ede7d56dff5a (diff) | |
download | gcc-d3b6a5fb669a3b71839e69e4bfbe0c414829c834.zip gcc-d3b6a5fb669a3b71839e69e4bfbe0c414829c834.tar.gz gcc-d3b6a5fb669a3b71839e69e4bfbe0c414829c834.tar.bz2 |
* stor-layout.c (set_sizetype): Use TYPE_ORIG_SIZE_TYPE.
From-SVN: r79642
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 7923492..fa26bd7 100644 --- a/gcc/stor-layout.c +++ b/gcc/stor-layout.c @@ -1888,7 +1888,7 @@ set_sizetype (tree type) /* Make copies of nodes since we'll be setting TYPE_IS_SIZETYPE. */ sizetype = copy_node (type); - TYPE_DOMAIN (sizetype) = type; + TYPE_ORIG_SIZE_TYPE (sizetype) = type; TYPE_IS_SIZETYPE (sizetype) = 1; bitsizetype = make_node (INTEGER_TYPE); TYPE_NAME (bitsizetype) = TYPE_NAME (type); |