llvm/llvm/lib/SandboxIR/Type.cpp

//===- Type.cpp - Sandbox IR Type -----------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "llvm/SandboxIR/Type.h"
#include "llvm/SandboxIR/SandboxIR.h"

usingnamespacellvm::sandboxir;

Type *Type::getScalarType() const {}

Type *Type::getInt64Ty(Context &Ctx) {}
Type *Type::getInt32Ty(Context &Ctx) {}
Type *Type::getInt16Ty(Context &Ctx) {}
Type *Type::getInt8Ty(Context &Ctx) {}
Type *Type::getInt1Ty(Context &Ctx) {}
Type *Type::getDoubleTy(Context &Ctx) {}
Type *Type::getFloatTy(Context &Ctx) {}

PointerType *PointerType::get(Type *ElementType, unsigned AddressSpace) {}

PointerType *PointerType::get(Context &Ctx, unsigned AddressSpace) {}