sdesmalen added inline comments.
================ Comment at: llvm/lib/Target/AMDGPU/AMDGPUPrintfRuntimeBinding.cpp:411 SmallVector<Value *, 32> WhatToStore; - if (ArgType->isFPOrFPVectorTy() && - (ArgType->getTypeID() != Type::VectorTyID)) { + if (ArgType->isFPOrFPVectorTy() && isa<FixedVectorType>(ArgType)) { Type *IType = (ArgType->isFloatTy()) ? Int32Ty : Int64Ty; ---------------- should this be `!isa<FixedVectorType>(ArgType)` (i.e. negated)? Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D77587/new/ https://reviews.llvm.org/D77587 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits