| 687 | } |
| 688 | |
| 689 | std::string stringifyLLVMType(llvm::Type* ty) { |
| 690 | assert(ty != nullptr); |
| 691 | |
| 692 | std::string data; |
| 693 | { |
| 694 | llvm::raw_string_ostream stream{data}; |
| 695 | ty->print(stream); |
| 696 | } |
| 697 | return data; |
| 698 | } |
| 699 | |
| 700 | namespace { |
| 701 |
no outgoing calls
no test coverage detected