reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/CodeGen/MachineFunction.cpp
 1020   if (A == B) return true;
 1024   if (A->getType() == B->getType()) return false;
 1027   if (isa<StructType>(A->getType()) || isa<ArrayType>(A->getType()) ||
 1027   if (isa<StructType>(A->getType()) || isa<ArrayType>(A->getType()) ||
 1032   uint64_t StoreSize = DL.getTypeStoreSize(A->getType());
 1036   Type *IntTy = IntegerType::get(A->getContext(), StoreSize*8);
 1042   if (isa<PointerType>(A->getType()))
 1043     A = ConstantFoldCastOperand(Instruction::PtrToInt,
 1044                                 const_cast<Constant *>(A), IntTy, DL);
 1045   else if (A->getType() != IntTy)
 1046     A = ConstantFoldCastOperand(Instruction::BitCast, const_cast<Constant *>(A),
 1046     A = ConstantFoldCastOperand(Instruction::BitCast, const_cast<Constant *>(A),
 1055   return A == B;