diff options
| author | Serge Guelton <sguelton@quarkslab.com> | 2017-05-09 19:31:13 +0000 |
|---|---|---|
| committer | Serge Guelton <sguelton@quarkslab.com> | 2017-05-09 19:31:13 +0000 |
| commit | e38003f8399531b00e9fc8e9c6cfe311bc3ad4fb (patch) | |
| tree | 55325a133bbc8a4fd616f0d9a3c5bdffae94e02a /llvm/unittests | |
| parent | f570c76c5cc9afbda73b7c34ef3dec8332fee02a (diff) | |
| download | bcm5719-llvm-e38003f8399531b00e9fc8e9c6cfe311bc3ad4fb.tar.gz bcm5719-llvm-e38003f8399531b00e9fc8e9c6cfe311bc3ad4fb.zip | |
Suppress all uses of LLVM_END_WITH_NULL. NFC.
Use variadic templates instead of relying on <cstdarg> + sentinel.
This enforces better type checking and makes code more readable.
Differential Revision: https://reviews.llvm.org/D32541
llvm-svn: 302571
Diffstat (limited to 'llvm/unittests')
| -rw-r--r-- | llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h | 2 | ||||
| -rw-r--r-- | llvm/unittests/IR/TypeBuilderTest.cpp | 30 |
2 files changed, 15 insertions, 17 deletions
diff --git a/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h b/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h index 7fb26634c7a..dff72c6b9d5 100644 --- a/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h +++ b/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h @@ -101,7 +101,7 @@ class TypeBuilder<DummyStruct, XCompile> { public: static StructType *get(LLVMContext &Context) { return StructType::get( - TypeBuilder<types::i<32>[256], XCompile>::get(Context), nullptr); + TypeBuilder<types::i<32>[256], XCompile>::get(Context)); } }; diff --git a/llvm/unittests/IR/TypeBuilderTest.cpp b/llvm/unittests/IR/TypeBuilderTest.cpp index f2dccac001a..9ba776543d9 100644 --- a/llvm/unittests/IR/TypeBuilderTest.cpp +++ b/llvm/unittests/IR/TypeBuilderTest.cpp @@ -264,23 +264,21 @@ namespace { TEST(TypeBuilderTest, Extensions) { LLVMContext Context; - EXPECT_EQ(PointerType::getUnqual(StructType::get( - TypeBuilder<int, false>::get(Context), - TypeBuilder<int *, false>::get(Context), - TypeBuilder<void *[], false>::get(Context), (void *)nullptr)), + EXPECT_EQ(PointerType::getUnqual( + StructType::get(TypeBuilder<int, false>::get(Context), + TypeBuilder<int *, false>::get(Context), + TypeBuilder<void *[], false>::get(Context))), (TypeBuilder<MyType *, false>::get(Context))); - EXPECT_EQ( - PointerType::getUnqual(StructType::get( - TypeBuilder<types::i<32>, false>::get(Context), - TypeBuilder<types::i<32> *, false>::get(Context), - TypeBuilder<types::i<8> *[], false>::get(Context), (void *)nullptr)), - (TypeBuilder<MyPortableType *, false>::get(Context))); - EXPECT_EQ( - PointerType::getUnqual(StructType::get( - TypeBuilder<types::i<32>, false>::get(Context), - TypeBuilder<types::i<32> *, false>::get(Context), - TypeBuilder<types::i<8> *[], false>::get(Context), (void *)nullptr)), - (TypeBuilder<MyPortableType *, true>::get(Context))); + EXPECT_EQ(PointerType::getUnqual(StructType::get( + TypeBuilder<types::i<32>, false>::get(Context), + TypeBuilder<types::i<32> *, false>::get(Context), + TypeBuilder<types::i<8> *[], false>::get(Context))), + (TypeBuilder<MyPortableType *, false>::get(Context))); + EXPECT_EQ(PointerType::getUnqual(StructType::get( + TypeBuilder<types::i<32>, false>::get(Context), + TypeBuilder<types::i<32> *, false>::get(Context), + TypeBuilder<types::i<8> *[], false>::get(Context))), + (TypeBuilder<MyPortableType *, true>::get(Context))); } } // anonymous namespace |

