llvm/llvm/unittests/IR/VectorTypesTest.cpp

//===--- llvm/unittest/IR/VectorTypesTest.cpp - vector types unit tests ---===//
//
// 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/IR/DataLayout.h"
#include "llvm/IR/DerivedTypes.h"
#include "llvm/IR/LLVMContext.h"
#include "llvm/Support/TypeSize.h"
#include "gtest/gtest.h"
usingnamespacellvm;

namespace {

#define EXPECT_VTY_EQ(LHS, RHS)

#define EXPECT_VTY_NE(LHS, RHS)

TEST(VectorTypesTest, FixedLength) {}

TEST(VectorTypesTest, Scalable) {}

TEST(VectorTypesTest, BaseVectorType) {}

TEST(VectorTypesTest, FixedLenComparisons) {}

TEST(VectorTypesTest, ScalableComparisons) {}

TEST(VectorTypesTest, CrossComparisons) {}

} // end anonymous namespace