Searched refs:CurTy (Results 1 - 2 of 2) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Support/
H A DGetElementPtrTypeIterator.h29 Type *CurTy; member in class:llvm::generic_gep_type_iterator
35 I.CurTy = Ty;
41 I.CurTy = 0;
54 return CurTy;
58 CompositeType *CT = cast<CompositeType>(CurTy);
69 if (CompositeType *CT = dyn_cast<CompositeType>(CurTy)) {
70 CurTy = CT->getTypeAtIndex(getOperand());
72 CurTy = 0;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Bitcode/Reader/
H A DBitcodeReader.cpp958 Type *CurTy = Type::getInt32Ty(Context); local
985 V = UndefValue::get(CurTy);
992 CurTy = TypeList[Record[0]];
995 V = Constant::getNullValue(CurTy);
998 if (!CurTy->isIntegerTy() || Record.empty())
1000 V = ConstantInt::get(CurTy, DecodeSignRotatedValue(Record[0]));
1003 if (!CurTy->isIntegerTy() || Record.empty())
1007 cast<IntegerType>(CurTy)->getBitWidth());
1015 if (CurTy->isHalfTy())
1017 else if (CurTy
[all...]

Completed in 134 milliseconds