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

Method Print

be/src/codegen/codegen-util.h:57–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

55
56 /// Returns the string representation of a llvm::Value* or llvm::Type*
57 template <typename T> static std::string Print(T* value_or_type) {
58 std::string str;
59 llvm::raw_string_ostream stream(str);
60 value_or_type->print(stream);
61 return str;
62 }
63
64 /// Return the byte size of the given PrimitiveType.
65 static int64_t GetTypeSize(const PrimitiveType type) {

Callers

nothing calls this directly

Calls 1

printMethod · 0.45

Tested by

no test coverage detected