From 3ff78fe33aa5e978fe36cb481d0cc8030e7e7bb6 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sun, 13 Apr 1997 12:53:00 -0400 Subject: [PATCH] (tstdi): Add missing parallel around the pattern. From-SVN: r13881 --- gcc/config/m68k/m68k.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gcc/config/m68k/m68k.md b/gcc/config/m68k/m68k.md index 86a70b6361d..92733efe441 100644 --- a/gcc/config/m68k/m68k.md +++ b/gcc/config/m68k/m68k.md @@ -304,10 +304,10 @@ ;; be folded while optimizing anyway. (define_expand "tstdi" - [(set (cc0) - (match_operand:DI 0 "nonimmediate_operand" "")) - (clobber (match_scratch:SI 1 "")) - (clobber (match_scratch:DI 2 ""))] + [(parallel [(set (cc0) + (match_operand:DI 0 "nonimmediate_operand" "")) + (clobber (match_scratch:SI 1 "")) + (clobber (match_scratch:DI 2 ""))])] "" "m68k_last_compare_had_fp_operands = 0;") -- 2.30.2