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

References

unittests/IR/InstructionsTest.cpp
  219   const Constant *v2ptr32 = Constant::getNullValue(V2Int32PtrTy);
  238   EXPECT_FALSE(CastInst::isBitCastable(V2Int32PtrTy, V2Int32PtrAS1Ty));
  239   EXPECT_FALSE(CastInst::isBitCastable(V2Int32PtrAS1Ty, V2Int32PtrTy));
  241   EXPECT_TRUE(CastInst::isCastable(V2Int32PtrAS1Ty, V2Int32PtrTy));
  250   EXPECT_FALSE(CastInst::isBitCastable(Int32PtrTy, V2Int32PtrTy));
  251   EXPECT_FALSE(CastInst::isBitCastable(V2Int32PtrTy, Int32PtrTy));
  267   EXPECT_FALSE(CastInst::isBitCastable(V2Int32PtrTy, Int64Ty));
  268   EXPECT_FALSE(CastInst::isBitCastable(Int64Ty, V2Int32PtrTy));
  269   EXPECT_TRUE(CastInst::isBitCastable(V2Int64PtrTy, V2Int32PtrTy));
  270   EXPECT_TRUE(CastInst::isBitCastable(V2Int32PtrTy, V2Int64PtrTy));
  277                                      V2Int32PtrTy));
  279                                      Constant::getNullValue(V2Int32PtrTy),
  284                                      V2Int32PtrTy));
  286                                      Constant::getNullValue(V2Int32PtrTy),
  294   Constant *NullV2I32Ptr = Constant::getNullValue(V2Int32PtrTy);