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

Method GetNamedPtrType

be/src/codegen/llvm-codegen.cc:623–627  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

621}
622
623llvm::PointerType* LlvmCodeGen::GetNamedPtrType(const string& name) {
624 llvm::Type* type = GetNamedType(name);
625 DCHECK(type != NULL) << name;
626 return llvm::PointerType::get(type, 0);
627}
628
629llvm::PointerType* LlvmCodeGen::GetPtrType(llvm::Type* type) {
630 return llvm::PointerType::get(type, 0);

Callers 4

CodegenInsertMethod · 0.80
CodegenHashRowMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected