[PATCH] D124728: Allow pointer types for atomicrmw xchg
Eli Friedman via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon May 2 14:23:29 PDT 2022
efriedma added inline comments.
================
Comment at: llvm/lib/IR/Verifier.cpp:3929
+ Check(ElTy->isIntegerTy() || ElTy->isFloatingPointTy() ||
+ ElTy->isPointerTy(),
"atomicrmw " + AtomicRMWInst::getOperationName(Op) +
----------------
Is the verifier missing a check for the power-of-two constraint that the IR parser enforces?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D124728/new/
https://reviews.llvm.org/D124728
More information about the llvm-commits
mailing list