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

References

unittests/CodeGen/LowLevelTypeTest.cpp
  173       const LLT VTy = LLT::vector(NumElts, Ty);
  176       ASSERT_TRUE(Ty.isValid());
  177       ASSERT_TRUE(Ty.isPointer());
  179       ASSERT_FALSE(Ty.isScalar());
  180       ASSERT_FALSE(Ty.isVector());
  186       EXPECT_EQ(Ty, VTy.getElementType());
  187       EXPECT_EQ(Ty.getSizeInBits(), VTy.getScalarSizeInBits());
  190       EXPECT_EQ(AS, Ty.getAddressSpace());
  194       EXPECT_TRUE(Ty == Ty);
  194       EXPECT_TRUE(Ty == Ty);
  195       EXPECT_FALSE(Ty != Ty);
  195       EXPECT_FALSE(Ty != Ty);
  201       EXPECT_EQ(Ty, getLLTForType(*IRTy, DL));