diff options
| author | matt <matt@NetBSD.org> | 2000-07-03 01:09:52 +0000 |
|---|---|---|
| committer | matt <matt@NetBSD.org> | 2000-07-03 01:09:52 +0000 |
| commit | 5335c7ffeafbbfb8480a7a7791a5d9fe668acaa8 (patch) | |
| tree | 774063375a585baf66ed0aa0e78b4bc5f1ae2c39 /gnu | |
| parent | feb821964808ab315cfde88c12711f8b1acee84e (diff) | |
fix serious recog bug. Basically addl2 was never used since the rtx_equal_p
was using the wrong operands.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/dist/gcc/config/vax/vax.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/dist/gcc/config/vax/vax.md b/gnu/dist/gcc/config/vax/vax.md index 779df1417cd..d8e67804fc1 100644 --- a/gnu/dist/gcc/config/vax/vax.md +++ b/gnu/dist/gcc/config/vax/vax.md @@ -830,7 +830,7 @@ "" "* { - if (rtx_equal_p(operands[1], operands[2])) + if (rtx_equal_p(operands[1], operands[0])) { if ((flag_pic || TARGET_HALFPIC) && vax_symbolic_operand (operands[2], GET_MODE (operands[2]))) |
