HomeSort by: relevance | last modified time | path
    Searched defs:ZExtInst (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Instructions.h 4742 // ZExtInst Class
4746 class ZExtInst : public CastInst {
4751 /// Clone an identical ZExtInst
4752 ZExtInst *cloneImpl() const;
4756 ZExtInst(
4764 ZExtInst(
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Instructions.cpp 2952 case ZExt: return new ZExtInst (S, Ty, Name, InsertBefore);
2974 case ZExt: return new ZExtInst (S, Ty, Name, InsertAtEnd);
3442 ZExtInst::ZExtInst(
3448 ZExtInst::ZExtInst(
4400 ZExtInst *ZExtInst::cloneImpl() const {
4401 return new ZExtInst(getOperand(0), getType());

Completed in 64 milliseconds