1//===--- PrimType.cpp - Types for the constexpr VM --------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "PrimType.h"
10#include "Boolean.h"
11#include "Char.h"
12#include "FixedPoint.h"
13#include "Floating.h"
14#include "IntegralAP.h"
15#include "MemberPointer.h"
16#include "Pointer.h"
17
18using namespace clang;
19using namespace clang::interp;
20
21namespace clang {
22namespace interp {
23
24size_t primSize(PrimType Type) {
25 TYPE_SWITCH(Type, return sizeof(T));
26 llvm_unreachable("not a primitive type");
27}
28
29} // namespace interp
30} // namespace clang
31