MCPcopy Create free account
hub / github.com/NVIDIA/cuda-tile / getDebugReserved

Method getDebugReserved

lib/Bytecode/Writer/BytecodeWriter.cpp:764–769  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

762 }
763
764 Bytecode::DebugReserved getDebugReserved(Attribute attr) {
765 return TypeSwitch<Attribute, Bytecode::DebugReserved>(attr)
766 .Case<FileLineColLoc, UnknownLoc>(
767 [](auto loc) { return Bytecode::DebugReserved::UnknownLoc; })
768 .Default([](Attribute) { return Bytecode::DebugReserved::SIZE; });
769 }
770
771 void registerDebugInfo(Attribute attr) {
772 TypeSwitch<Attribute, void>(attr)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected