[PATCH] D70652: [X86][MC] no error diagnostic for out-of-range jrcxz/jecxz/jcxz
Craig Topper via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sun Nov 24 22:34:36 PST 2019
craig.topper added inline comments.
================
Comment at: llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp:122
+ if ((Target.isAbsolute() || IsResolved)
+ && getFixupKindInfo(Fixup.getKind()).Flags &
+ MCFixupKindInfo::FKF_IsPCRel) {
----------------
I think the && should be at the end of the previous line. Can you run this through clang-format?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D70652/new/
https://reviews.llvm.org/D70652
More information about the llvm-commits
mailing list