MCPcopy Create free account
hub / github.com/apache/impala / Print

Method Print

be/src/codegen/llvm-codegen.h:471–476  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

469
470 /// Returns the string representation of a llvm::Value* or llvm::Type*
471 template <typename T> static std::string Print(T* value_or_type) {
472 std::string str;
473 llvm::raw_string_ostream stream(str);
474 value_or_type->print(stream);
475 return str;
476 }
477
478 /// Returns the cross compiled function. 'ir_type' is an enum which is generated
479 /// by gen_ir_descriptions.py. The returned function and its callee will be materialized

Callers

nothing calls this directly

Calls 1

printMethod · 0.45

Tested by

no test coverage detected