diff options
author | Jeff Law <law@gcc.gnu.org> | 1996-10-06 16:44:09 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1996-10-06 16:44:09 -0600 |
commit | 1c138ba30278f35104f786fa4514b4f0dc131458 (patch) | |
tree | 3ac24c47f07880e4a7d996d6d1412eaac5adad3c /gcc | |
parent | a651f22233b5d950f4ba26d20c1c7b1d54b201c0 (diff) | |
download | gcc-1c138ba30278f35104f786fa4514b4f0dc131458.zip gcc-1c138ba30278f35104f786fa4514b4f0dc131458.tar.gz gcc-1c138ba30278f35104f786fa4514b4f0dc131458.tar.bz2 |
* pa/pa.h (combinable_fsub): Don't return without a value!
From-SVN: r12908
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/pa/pa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 046f93a..0dca702 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -5704,7 +5704,7 @@ combinable_fsub (insn) /* Only 2 real operands to the subtraction. Output must be the same as the first operand of the MINUS. */ if (! rtx_equal_p (dest, XEXP (src, 0))) - return; + return 0; /* Inout operand of the sub can not conflict with any operands from the multiply. */ |