aboutsummaryrefslogtreecommitdiff
path: root/gcc/config
diff options
context:
space:
mode:
authorDavid Edelsohn <edelsohn@gnu.org>2000-08-14 20:46:16 +0000
committerDavid Edelsohn <dje@gcc.gnu.org>2000-08-14 16:46:16 -0400
commit78fbdbf74875ef9b17e62f070c10b75faf79ecc3 (patch)
treedf58dccc50de07ec6ea1c1e5fbc554d32cf40081 /gcc/config
parent9a89adb8c76cc64dab9bf62d1cdc08322f883604 (diff)
downloadgcc-78fbdbf74875ef9b17e62f070c10b75faf79ecc3.zip
gcc-78fbdbf74875ef9b17e62f070c10b75faf79ecc3.tar.gz
gcc-78fbdbf74875ef9b17e62f070c10b75faf79ecc3.tar.bz2
collect2.c: Remove use of AIX import file.
* collect2.c: Remove use of AIX import file. * longlong.h: Test ARCH_PWR not ARCH_POWER. * rs6000.c (print_operand, case 'E'): Add else. From-SVN: r35686
Diffstat (limited to 'gcc/config')
-rw-r--r--gcc/config/rs6000/rs6000.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c
index a85f5bd..d4b4889 100644
--- a/gcc/config/rs6000/rs6000.c
+++ b/gcc/config/rs6000/rs6000.c
@@ -3757,8 +3757,8 @@ print_operand (file, x, code)
/* X is a CR register. Print the number of the third bit of the CR */
if (GET_CODE (x) != REG || ! CR_REGNO_P (REGNO (x)))
output_operand_lossage ("invalid %%E value");
-
- fprintf(file, "%d", 4 * (REGNO (x) - CR0_REGNO) + 3);
+ else
+ fprintf (file, "%d", 4 * (REGNO (x) - CR0_REGNO) + 3);
return;
case 'f':