2013-01-12 15:13:45 +01:00
|
|
|
//===- llvm/unittest/IR/AttributesTest.cpp - Attributes unit tests --------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/IR/Attributes.h"
|
|
|
|
#include "llvm/IR/LLVMContext.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
TEST(Attributes, Uniquing) {
|
|
|
|
LLVMContext C;
|
|
|
|
|
|
|
|
Attribute AttrA = Attribute::get(C, Attribute::AlwaysInline);
|
|
|
|
Attribute AttrB = Attribute::get(C, Attribute::AlwaysInline);
|
|
|
|
EXPECT_EQ(AttrA, AttrB);
|
|
|
|
|
2013-01-27 04:39:10 +01:00
|
|
|
AttributeSet ASs[] = {
|
|
|
|
AttributeSet::get(C, 1, Attribute::ZExt),
|
|
|
|
AttributeSet::get(C, 2, Attribute::SExt)
|
2013-01-12 15:13:45 +01:00
|
|
|
};
|
|
|
|
|
2013-01-27 04:39:10 +01:00
|
|
|
AttributeSet SetA = AttributeSet::get(C, ASs);
|
|
|
|
AttributeSet SetB = AttributeSet::get(C, ASs);
|
2013-01-12 15:13:45 +01:00
|
|
|
EXPECT_EQ(SetA, SetB);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // end anonymous namespace
|