[X86] X86InstCombineIntrinsic.cpp - silence clang-tidy warnings about incorrect uses...
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Tue, 20 Jul 2021 12:37:24 +0000 (13:37 +0100)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Tue, 20 Jul 2021 12:37:45 +0000 (13:37 +0100)
commitc188f0b8766f70289f0480bc03abee33357c80f7
tree6f9c688d9aefc163774dec5da0d31ba49ea17042
parente7accb75bee33d1d1e216e91580a3ca318019bed
[X86] X86InstCombineIntrinsic.cpp - silence clang-tidy warnings about incorrect uses of auto. NFCI.

We were using auto instead of auto* in a number of places which failed the llvm-qualified-auto check.

Additionally we were using auto in some places where the type wasn't immediately obvious - the style guide rule of thumb is only to use auto from casts etc. where the type is already explicitly stated.
llvm/lib/Target/X86/X86InstCombineIntrinsic.cpp