reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

unittests/IR/InstructionsTest.cpp
  673   ASSERT_NE(GEPI->idx_begin(), GEPI->idx_end());
  673   ASSERT_NE(GEPI->idx_begin(), GEPI->idx_end());
  674   ASSERT_EQ(GEPI->idx_end(), std::next(GEPI->idx_begin(), 3));
  674   ASSERT_EQ(GEPI->idx_end(), std::next(GEPI->idx_begin(), 3));
  675   EXPECT_EQ(Indices[0], GEPI->idx_begin()[0]);
  676   EXPECT_EQ(Indices[1], GEPI->idx_begin()[1]);
  677   EXPECT_EQ(Indices[2], GEPI->idx_begin()[2]);
  678   EXPECT_EQ(GEPI->idx_begin(), GEPI->indices().begin());
  678   EXPECT_EQ(GEPI->idx_begin(), GEPI->indices().begin());
  679   EXPECT_EQ(GEPI->idx_end(), GEPI->indices().end());
  679   EXPECT_EQ(GEPI->idx_end(), GEPI->indices().end());
  681   const auto *CGEPI = GEPI;
  690   delete GEPI;