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;
 1028       isa<StructType>(B->getType()) || isa<ArrayType>(B->getType()))
 1028       isa<StructType>(B->getType()) || isa<ArrayType>(B->getType()))
 1033   if (StoreSize != DL.getTypeStoreSize(B->getType()) || StoreSize > 128)
 1048   if (isa<PointerType>(B->getType()))
 1049     B = ConstantFoldCastOperand(Instruction::PtrToInt,
 1050                                 const_cast<Constant *>(B), IntTy, DL);
 1051   else if (B->getType() != IntTy)
 1052     B = ConstantFoldCastOperand(Instruction::BitCast, const_cast<Constant *>(B),
 1052     B = ConstantFoldCastOperand(Instruction::BitCast, const_cast<Constant *>(B),
 1055   return A == B;