#include "llvm/SandboxIR/Argument.h"
namespace llvm::sandboxir {
#ifndef NDEBUG
void Argument::printAsOperand(raw_ostream &OS) const {
printAsOperandCommon(OS);
}
void Argument::dumpOS(raw_ostream &OS) const {
dumpCommonPrefix(OS);
dumpCommonSuffix(OS);
}
#endif
}