]> git.ipfire.org Git - thirdparty/gcc.git/commit
X86: Fix a typo in call_insn_operand
authorH.J. Lu <hongjiu.lu@intel.com>
Thu, 21 Apr 2016 22:01:34 +0000 (22:01 +0000)
committerH.J. Lu <hjl@gcc.gnu.org>
Thu, 21 Apr 2016 22:01:34 +0000 (15:01 -0700)
commit04a63c24548b2dbda1924205412f00146421a64e
treed37bcb94f9f4f567d51e69e1e77e0ed3c7883b6e
parent6e07f9aaf35eeb81ac81a521b9b5d818a5062761
X86: Fix a typo in call_insn_operand

r231923 has

 ;; Test for a valid operand for a call instruction.
 ;; Allow constant call address operands in Pmode only.
 (define_special_predicate "call_insn_operand"
   (ior (match_test "constant_call_address_operand
       (op, mode == VOIDmode ? mode : Pmode)")
        (match_operand 0 "call_register_no_elim_operand")
-       (and (not (match_test "TARGET_X32"))
-     (match_operand 0 "memory_operand"))))
+       (ior (and (not (match_test "TARGET_X32"))
+  (match_operand 0 "sibcall_memory_operand"))
                                   ^^^^^^^^^^^^^^^^^^^^^^^ A typo.
+     (and (match_test "TARGET_X32 && Pmode == DImode")
+  (match_operand 0 "GOT_memory_operand")))))

"sibcall_memory_operand" should be "memory_operand".

gcc/

PR target/70750
* config/i386/predicates.md (call_insn_operand): Replace
sibcall_memory_operand with memory_operand.

gcc/testsuite/

PR target/70750
* gcc.target/i386/pr70750-1.c: New test.
* gcc.target/i386/pr70750-2.c: Likewise.

From-SVN: r235353
gcc/ChangeLog
gcc/config/i386/predicates.md
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/i386/pr70750-1.c [new file with mode: 0644]
gcc/testsuite/gcc.target/i386/pr70750-2.c [new file with mode: 0644]