]> git.ipfire.org Git - thirdparty/gcc.git/commit
x86: Change dest to src in replace_vector_const
authorH.J. Lu <hjl.tools@gmail.com>
Sat, 10 May 2025 22:17:45 +0000 (06:17 +0800)
committerH.J. Lu <hjl.tools@gmail.com>
Sat, 10 May 2025 22:39:41 +0000 (06:39 +0800)
commitba9d228a92057d3b839e7ea32b12c93fcfc5ff1e
tree5d79d490a7c238f9070e91fd36cc10c27d95ebeb
parent94fa992b60e53dcf807fc7055ab606d828b931d8
x86: Change dest to src in replace_vector_const

Replace

    rtx dest = SET_SRC (set);

with

    rtx src = SET_SRC (set);

in replace_vector_const to avoid confusion.

PR target/92080
PR target/117839
* config/i386/i386-features.cc (replace_vector_const): Change
dest to src.

Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
gcc/config/i386/i386-features.cc