From: H.J. Lu Date: Fri, 25 Mar 2022 17:48:16 +0000 (-0700) Subject: x86: Use x constraint on KL patterns X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ede5f5224d55b84b9f186b288164df9c06fd85e7;p=test_jj.git x86: Use x constraint on KL patterns Since KL instructions have no AVX512 version, replace the "v" register constraint with the "x" register constraint. PR target/105058 * config/i386/sse.md (loadiwkey): Replace "v" with "x". (aesu8): Likewise. --- diff --git a/gcc/config/i386/sse.md b/gcc/config/i386/sse.md index 29802d0..33bd2c4 100644 --- a/gcc/config/i386/sse.md +++ b/gcc/config/i386/sse.md @@ -28364,8 +28364,8 @@ ;; KEYLOCKER (define_insn "loadiwkey" - [(unspec_volatile:V2DI [(match_operand:V2DI 0 "register_operand" "v") - (match_operand:V2DI 1 "register_operand" "v") + [(unspec_volatile:V2DI [(match_operand:V2DI 0 "register_operand" "x") + (match_operand:V2DI 1 "register_operand" "x") (match_operand:V2DI 2 "register_operand" "Yz") (match_operand:SI 3 "register_operand" "a")] UNSPECV_LOADIWKEY) @@ -28498,7 +28498,7 @@ (UNSPECV_AESENC256KLU8 "enc256kl")]) (define_insn "aesu8" - [(set (match_operand:V2DI 0 "register_operand" "=v") + [(set (match_operand:V2DI 0 "register_operand" "=x") (unspec_volatile:V2DI [(match_operand:V2DI 1 "register_operand" "0") (match_operand:BLK 2 "memory_operand" "m")] AESDECENCKL))