diff options
Diffstat (limited to 'gcc/config/pdp11/predicates.md')
-rw-r--r-- | gcc/config/pdp11/predicates.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/pdp11/predicates.md b/gcc/config/pdp11/predicates.md index 7ae9ee4f03d..e3b205187ae 100644 --- a/gcc/config/pdp11/predicates.md +++ b/gcc/config/pdp11/predicates.md @@ -42,7 +42,7 @@ (ior (match_test "REGNO_REG_CLASS (REGNO (op)) == LOAD_FPU_REGS") (match_test "REGNO_REG_CLASS (REGNO (op)) == NO_LOAD_FPU_REGS")) - (match_test "general_operand (op, mode)"))) + (match_operand 0 "general_operand"))) ;; Accept anything nonimmediate_operand accepts, except that registers must ;; be FPU registers. @@ -51,4 +51,4 @@ (ior (match_test "REGNO_REG_CLASS (REGNO (op)) == LOAD_FPU_REGS") (match_test "REGNO_REG_CLASS (REGNO (op)) == NO_LOAD_FPU_REGS")) - (match_test "nonimmediate_operand (op, mode)"))) + (match_operand 0 "nonimmediate_operand"))) |