llvm::CallBase::hasIdenticalOperandBundleSchema

Return whether this call has the same operand bundle layout as Other.

Synopsis

Declared in <llvm/IR/InstrTypes.h>

bool
hasIdenticalOperandBundleSchema(CallBase const& Other) const;

Description

Two calls match when they have the same sequence of bundle tags and the same number of inputs in each bundle.

Return Value

True if the bundle schemas are identical.

Parameters

NameDescription
OtherThe call whose operand bundle schema is compared.