diff options
author | James Y Knight <jyknight@google.com> | 2019-02-01 20:44:24 +0000 |
---|---|---|
committer | James Y Knight <jyknight@google.com> | 2019-02-01 20:44:24 +0000 |
commit | 14359ef1b6a0610ac91df5f5a91c88a0b51c187c (patch) | |
tree | 53b7628ce6ecba998379d0d19f875bc9dad3b69a /llvm/unittests/Transforms | |
parent | d9e85a0861b7e9320c34547a2ad7f49c504a9381 (diff) | |
download | bcm5719-llvm-14359ef1b6a0610ac91df5f5a91c88a0b51c187c.tar.gz bcm5719-llvm-14359ef1b6a0610ac91df5f5a91c88a0b51c187c.zip |
[opaque pointer types] Pass value type to LoadInst creation.
This cleans up all LoadInst creation in LLVM to explicitly pass the
value type rather than deriving it from the pointer's element-type.
Differential Revision: https://reviews.llvm.org/D57172
llvm-svn: 352911
Diffstat (limited to 'llvm/unittests/Transforms')
-rw-r--r-- | llvm/unittests/Transforms/Scalar/LoopPassManagerTest.cpp | 11 | ||||
-rw-r--r-- | llvm/unittests/Transforms/Utils/FunctionComparatorTest.cpp | 2 |
2 files changed, 8 insertions, 5 deletions
diff --git a/llvm/unittests/Transforms/Scalar/LoopPassManagerTest.cpp b/llvm/unittests/Transforms/Scalar/LoopPassManagerTest.cpp index d9c08f060a6..5cb8e91cb3f 100644 --- a/llvm/unittests/Transforms/Scalar/LoopPassManagerTest.cpp +++ b/llvm/unittests/Transforms/Scalar/LoopPassManagerTest.cpp @@ -908,7 +908,8 @@ TEST_F(LoopPassManagerTest, LoopChildInsertion) { ASSERT_THAT(BBI, F.end()); auto CreateCondBr = [&](BasicBlock *TrueBB, BasicBlock *FalseBB, const char *Name, BasicBlock *BB) { - auto *Cond = new LoadInst(&Ptr, Name, /*isVolatile*/ true, BB); + auto *Cond = new LoadInst(Type::getInt1Ty(Context), &Ptr, Name, + /*isVolatile*/ true, BB); BranchInst::Create(TrueBB, FalseBB, Cond, BB); }; @@ -1110,7 +1111,8 @@ TEST_F(LoopPassManagerTest, LoopPeerInsertion) { ASSERT_THAT(BBI, F.end()); auto CreateCondBr = [&](BasicBlock *TrueBB, BasicBlock *FalseBB, const char *Name, BasicBlock *BB) { - auto *Cond = new LoadInst(&Ptr, Name, /*isVolatile*/ true, BB); + auto *Cond = new LoadInst(Type::getInt1Ty(Context), &Ptr, Name, + /*isVolatile*/ true, BB); BranchInst::Create(TrueBB, FalseBB, Cond, BB); }; @@ -1503,8 +1505,9 @@ TEST_F(LoopPassManagerTest, LoopDeletion) { auto *NewLoop03BB = BasicBlock::Create(Context, "loop.0.3", &F, &Loop0LatchBB); BranchInst::Create(NewLoop03BB, NewLoop03PHBB); - auto *Cond = new LoadInst(&Ptr, "cond.0.3", /*isVolatile*/ true, - NewLoop03BB); + auto *Cond = + new LoadInst(Type::getInt1Ty(Context), &Ptr, "cond.0.3", + /*isVolatile*/ true, NewLoop03BB); BranchInst::Create(&Loop0LatchBB, NewLoop03BB, Cond, NewLoop03BB); Loop02PHBB.getTerminator()->replaceUsesOfWith(&Loop0LatchBB, NewLoop03PHBB); diff --git a/llvm/unittests/Transforms/Utils/FunctionComparatorTest.cpp b/llvm/unittests/Transforms/Utils/FunctionComparatorTest.cpp index cf1296206d0..42f9fb39c2d 100644 --- a/llvm/unittests/Transforms/Utils/FunctionComparatorTest.cpp +++ b/llvm/unittests/Transforms/Utils/FunctionComparatorTest.cpp @@ -31,7 +31,7 @@ struct TestFunction { BB = BasicBlock::Create(Ctx, "", F); B.SetInsertPoint(BB); Argument *PointerArg = &*F->arg_begin(); - LoadInst *LoadInst = B.CreateLoad(PointerArg); + LoadInst *LoadInst = B.CreateLoad(T, PointerArg); C = B.getInt8(addVal); I = cast<Instruction>(B.CreateAdd(LoadInst, C)); B.CreateRet(I); |