mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 23:31:37 +00:00
A test for r172535.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172614 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9c79d01173
commit
4802b9d6dc
@ -162,6 +162,11 @@ TEST(InstructionsTest, VectorGep) {
|
||||
ICmpInst *ICmp1 = new ICmpInst(ICmpInst::ICMP_ULT, PtrVecA, PtrVecB);
|
||||
EXPECT_NE(ICmp0, ICmp1); // suppress warning.
|
||||
|
||||
BasicBlock* BB0 = BasicBlock::Create(C);
|
||||
// Test InsertAtEnd ICmpInst constructor.
|
||||
ICmpInst *ICmp2 = new ICmpInst(*BB0, ICmpInst::ICMP_SGE, PtrVecA, PtrVecB);
|
||||
EXPECT_NE(ICmp0, ICmp2); // suppress warning.
|
||||
|
||||
GetElementPtrInst *Gep0 = GetElementPtrInst::Create(PtrVecA, C2xi32a);
|
||||
GetElementPtrInst *Gep1 = GetElementPtrInst::Create(PtrVecA, C2xi32b);
|
||||
GetElementPtrInst *Gep2 = GetElementPtrInst::Create(PtrVecB, C2xi32a);
|
||||
@ -223,6 +228,9 @@ TEST(InstructionsTest, VectorGep) {
|
||||
delete Gep2;
|
||||
delete Gep3;
|
||||
|
||||
ICmp2->eraseFromParent();
|
||||
delete BB0;
|
||||
|
||||
delete ICmp0;
|
||||
delete ICmp1;
|
||||
delete PtrVecA;
|
||||
|
Loading…
x
Reference in New Issue
Block a user