mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
Update unit test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78260 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d7f2a6cb3f
commit
5b1e79e201
@ -171,7 +171,7 @@ public:
|
||||
st.push_back(TypeBuilder<int, cross>::get(Context));
|
||||
st.push_back(TypeBuilder<int*, cross>::get(Context));
|
||||
st.push_back(TypeBuilder<void*[], cross>::get(Context));
|
||||
static const StructType *const result = StructType::get(st);
|
||||
static const StructType *const result = StructType::get(Context, st);
|
||||
return result;
|
||||
}
|
||||
|
||||
@ -194,7 +194,7 @@ public:
|
||||
st.push_back(TypeBuilder<types::i<32>, cross>::get(Context));
|
||||
st.push_back(TypeBuilder<types::i<32>*, cross>::get(Context));
|
||||
st.push_back(TypeBuilder<types::i<8>*[], cross>::get(Context));
|
||||
static const StructType *const result = StructType::get(st);
|
||||
static const StructType *const result = StructType::get(Context, st);
|
||||
return result;
|
||||
}
|
||||
|
||||
@ -211,19 +211,19 @@ public:
|
||||
namespace {
|
||||
|
||||
TEST(TypeBuilderTest, Extensions) {
|
||||
EXPECT_EQ(PointerType::getUnqual(StructType::get(
|
||||
EXPECT_EQ(PointerType::getUnqual(StructType::get(getGlobalContext(),
|
||||
TypeBuilder<int, false>::get(getGlobalContext()),
|
||||
TypeBuilder<int*, false>::get(getGlobalContext()),
|
||||
TypeBuilder<void*[], false>::get(getGlobalContext()),
|
||||
NULL)),
|
||||
(TypeBuilder<MyType*, false>::get(getGlobalContext())));
|
||||
EXPECT_EQ(PointerType::getUnqual(StructType::get(
|
||||
EXPECT_EQ(PointerType::getUnqual(StructType::get(getGlobalContext(),
|
||||
TypeBuilder<types::i<32>, false>::get(getGlobalContext()),
|
||||
TypeBuilder<types::i<32>*, false>::get(getGlobalContext()),
|
||||
TypeBuilder<types::i<8>*[], false>::get(getGlobalContext()),
|
||||
NULL)),
|
||||
(TypeBuilder<MyPortableType*, false>::get(getGlobalContext())));
|
||||
EXPECT_EQ(PointerType::getUnqual(StructType::get(
|
||||
EXPECT_EQ(PointerType::getUnqual(StructType::get(getGlobalContext(),
|
||||
TypeBuilder<types::i<32>, false>::get(getGlobalContext()),
|
||||
TypeBuilder<types::i<32>*, false>::get(getGlobalContext()),
|
||||
TypeBuilder<types::i<8>*[], false>::get(getGlobalContext()),
|
||||
|
Loading…
Reference in New Issue
Block a user