[llvm] [llvm] Use nullptr instead of 0 or NULL (NFC) (PR #165396)
Kazu Hirata via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 28 16:13:21 PDT 2025
================
@@ -380,7 +380,7 @@ bool ExpandVariadics::runOnModule(Module &M) {
if (CB->isIndirectCall()) {
FunctionType *FTy = CB->getFunctionType();
if (FTy->isVarArg())
- Changed |= expandCall(M, Builder, CB, FTy, 0);
+ Changed |= expandCall(M, Builder, CB, FTy, nullptr);
----------------
kazutakahirata wrote:
Fixed.
https://github.com/llvm/llvm-project/pull/165396
More information about the llvm-commits
mailing list