Home | History | Annotate | Download | only in llvm

Lines Matching defs:UndefValue

890 /// UndefValue - 'undef' values are things that do not have specified contents.
899 class UndefValue : public Constant {
900 friend struct ConstantCreator<UndefValue, Type, char>;
902 UndefValue(const UndefValue &); // DO NOT IMPLEMENT
904 explicit UndefValue(Type *T) : Constant(T, UndefValueVal, 0, 0) {}
914 static UndefValue *get(Type *T);
919 static inline bool classof(const UndefValue *) { return true; }