HomeSort by relevance Sort by last modified time
    Searched defs:isIntegerTy (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/
Type.h 178 /// isIntegerTy - True if this is an instance of IntegerType.
180 bool isIntegerTy() const { return getTypeID() == IntegerTyID; }
182 /// isIntegerTy - Return true if this is an IntegerType of the given width.
183 bool isIntegerTy(unsigned Bitwidth) const;
  /external/llvm/lib/VMCore/
Type.cpp 50 /// isIntegerTy - Return true if this is an IntegerType of the specified width.
51 bool Type::isIntegerTy(unsigned Bitwidth) const {
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 303 milliseconds