| 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) |
nothing calls this directly
no outgoing calls
no test coverage detected