Searched defs:isIntegerTy (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/
H A DType.h178 /// isIntegerTy - True if this is an instance of IntegerType.
180 bool isIntegerTy() const { return getTypeID() == IntegerTyID; } function in class:llvm::Type
182 /// isIntegerTy - Return true if this is an IntegerType of the given width.
183 bool isIntegerTy(unsigned Bitwidth) const;
/external/llvm/lib/VMCore/
H A DType.cpp50 /// isIntegerTy - Return true if this is an IntegerType of the specified width.
51 bool Type::isIntegerTy(unsigned Bitwidth) const { function in class:Type
52 return isIntegerTy() && cast<IntegerType>(this)->getBitWidth() == Bitwidth;
59 if (isIntegerTy())
63 return cast<VectorType>(this)->getElementType()->isIntegerTy();
176 if (this->isIntegerTy())
666 if (V->getType()->isIntegerTy(32))
673 return V->getType()->isIntegerTy();
739 return ElemTy->isIntegerTy() || ElemTy->isFloatingPointTy();

Completed in 50 milliseconds