Home
last modified time | relevance | path

Searched refs:MVType (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DEvaluator.cpp187 Type *MVType = MV->getType(); in write() local
189 if (Ty->isIntegerTy() && MVType->isPointerTy()) in write()
190 MV->Val = ConstantExpr::getIntToPtr(V, MVType); in write()
191 else if (Ty->isPointerTy() && MVType->isIntegerTy()) in write()
192 MV->Val = ConstantExpr::getPtrToInt(V, MVType); in write()
193 else if (Ty != MVType) in write()
194 MV->Val = ConstantExpr::getBitCast(V, MVType); in write()