diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-10-06 22:44:09 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-10-06 22:44:09 +0000 |
commit | e8e147c9511dc6e9ec2eb955e7a84362dc6e8adc (patch) | |
tree | 3ac24c47f07880e4a7d996d6d1412eaac5adad3c | |
parent | 46c08e502c8a14945b2f72301b39c80638f32104 (diff) | |
download | gcc-e8e147c9511dc6e9ec2eb955e7a84362dc6e8adc.tar.gz |
* pa/pa.h (combinable_fsub): Don't return without a value!
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12908 138bc75d-0d04-0410-961f-82ee72b054a4
-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 046f93a8df2..0dca702983f 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. */ |