diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-09-24 01:23:23 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-09-24 01:23:23 +0000 |
commit | bc244e4c8f92b3c11bc51f4303013e818b9497bf (patch) | |
tree | 241bc62a01733679dcb5fd3cffd734680be5a786 /gcc/explow.c | |
parent | 3e5c6b4eeb038b19f9d3d015eaaaa158e0a7f7d5 (diff) | |
download | gcc-bc244e4c8f92b3c11bc51f4303013e818b9497bf.tar.gz |
(promote_mode, case REFERENCE_TYPE): New case.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12792 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/explow.c')
-rw-r--r-- | gcc/explow.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/explow.c b/gcc/explow.c index 08fe69ccdae..a68e2834121 100644 --- a/gcc/explow.c +++ b/gcc/explow.c @@ -732,6 +732,7 @@ promote_mode (type, mode, punsignedp, for_call) #endif #ifdef POINTERS_EXTEND_UNSIGNED + case REFERENCE_TYPE: case POINTER_TYPE: mode = Pmode; unsignedp = POINTERS_EXTEND_UNSIGNED; |