diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1992-10-23 07:49:05 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1992-10-23 07:49:05 -0400 |
commit | 5187794f258455e152a04213182bd229ecc109fc (patch) | |
tree | 1fe5713142e88c36f34879d5a9817ec0601c17d9 /gcc | |
parent | 561e66508917fad2ede3d5f841d39060df194dca (diff) | |
download | gcc-5187794f258455e152a04213182bd229ecc109fc.zip gcc-5187794f258455e152a04213182bd229ecc109fc.tar.gz gcc-5187794f258455e152a04213182bd229ecc109fc.tar.bz2 |
(output_fpops): Add SYMBOL_REF and LABEL_REF cases to constants
handled.
From-SVN: r2573
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/romp/romp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/config/romp/romp.c b/gcc/config/romp/romp.c index 468fb1c..c95d750 100644 --- a/gcc/config/romp/romp.c +++ b/gcc/config/romp/romp.c @@ -1809,6 +1809,8 @@ output_fpops (file) case CONST_INT: case CONST_DOUBLE: case CONST: + case SYMBOL_REF: + case LABEL_REF: type += 0x20; opbyte = 0; immed[i] = fpop->ops[i]; |