Lines Matching refs:Int32Ty
176 Type *Int32Ty = Type::getInt32Ty(C); in TEST() local
186 Type *V2Int32Ty = VectorType::get(Int32Ty, 2); in TEST()
190 Type *Int32PtrTy = PointerType::get(Int32Ty, 0); in TEST()
193 Type *Int32PtrAS1Ty = PointerType::get(Int32Ty, 1); in TEST()
247 EXPECT_TRUE(CastInst::isBitCastable(FloatTy, Int32Ty)); in TEST()
249 EXPECT_TRUE(CastInst::isBitCastable(Int32Ty, FloatTy)); in TEST()
253 EXPECT_FALSE(CastInst::isBitCastable(Int32Ty, Int64Ty)); in TEST()
254 EXPECT_FALSE(CastInst::isBitCastable(Int64Ty, Int32Ty)); in TEST()
412 Type* Int32Ty = Type::getInt32Ty(C); in TEST() local
420 Int32Ty, nullptr, Int32Ty), in TEST()
435 Int64PtrTy, Int32Ty, Int64PtrTy, in TEST()
450 nullptr, Int32Ty, nullptr), in TEST()
490 Type *Int32Ty = Type::getInt32Ty(C); in TEST() local
491 Type *ArgTys[] = {Int32Ty, Int32Ty, Int32Ty}; in TEST()
492 Type *FnTy = FunctionType::get(Int32Ty, ArgTys, /*isVarArg=*/false); in TEST()
495 ConstantInt::get(Int32Ty, 1), in TEST()
496 ConstantInt::get(Int32Ty, 2), in TEST()
497 ConstantInt::get(Int32Ty, 3) in TEST()