diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1996-09-23 21:23:23 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1996-09-23 21:23:23 -0400 |
commit | 56a4c9e298378223d1e12d8bae299259eb4df898 (patch) | |
tree | 241bc62a01733679dcb5fd3cffd734680be5a786 /gcc | |
parent | 37306b1ec05c191db1515e4946423131a6186fd2 (diff) | |
download | gcc-56a4c9e298378223d1e12d8bae299259eb4df898.zip gcc-56a4c9e298378223d1e12d8bae299259eb4df898.tar.gz gcc-56a4c9e298378223d1e12d8bae299259eb4df898.tar.bz2 |
(promote_mode, case REFERENCE_TYPE): New case.
From-SVN: r12792
Diffstat (limited to 'gcc')
-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 08fe69c..a68e283 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; |