MCPcopy Create free account
hub / github.com/chigraph/chigraph / stringifyLLVMType

Function stringifyLLVMType

libchigraph/src/Context.cpp:689–698  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

687}
688
689std::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
700namespace {
701

Callers 4

ContextTests.cppFile · 0.85
codegenMethod · 0.85
codegenNodeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected