diff options
author | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-11-10 21:27:39 +0000 |
---|---|---|
committer | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-11-10 21:27:39 +0000 |
commit | 35ede5b0ca51f6b837e94671a1dc7487d78a1a63 (patch) | |
tree | 1315dd1d077d985341490499724b75d4462ad9e8 /gcc/sdbout.c | |
parent | 57d45f033a31a57c9adf61898fe8741e3366b4bd (diff) | |
download | gcc-35ede5b0ca51f6b837e94671a1dc7487d78a1a63.tar.gz |
(plain_type_1): Handle LONG_TYPE_SIZE like INT_TYPE_SIZE.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@2739 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sdbout.c')
-rw-r--r-- | gcc/sdbout.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/sdbout.c b/gcc/sdbout.c index 4c3b24dabc2..4557817649d 100644 --- a/gcc/sdbout.c +++ b/gcc/sdbout.c @@ -452,6 +452,8 @@ plain_type_1 (type) return (TREE_UNSIGNED (type) ? T_USHORT : T_SHORT); if (size == INT_TYPE_SIZE) return (TREE_UNSIGNED (type) ? T_UINT : T_INT); + if (size == LONG_TYPE_SIZE) + return (TREE_UNSIGNED (type) ? T_ULONG : T_LONG); return 0; } |