forked from OSchip/llvm-project
parent
949681f510
commit
4c244225d5
|
@ -164,6 +164,10 @@ public:
|
|||
return operator=(H.Ty);
|
||||
}
|
||||
|
||||
/// getRawType - This should only be used to implement the vmcore library.
|
||||
///
|
||||
const Type *getRawType() const { return Ty; }
|
||||
|
||||
private:
|
||||
void addRef();
|
||||
void dropRef();
|
||||
|
|
|
@ -141,6 +141,10 @@ public:
|
|||
return true; // Values are always values.
|
||||
}
|
||||
|
||||
/// getRawType - This should only be used to implement the vmcore library.
|
||||
///
|
||||
const Type *getRawType() const { return Ty.getRawType(); }
|
||||
|
||||
private:
|
||||
/// FIXME: this is a gross hack, needed by another gross hack. Eliminate!
|
||||
void setValueType(unsigned VT) { SubclassID = VT; }
|
||||
|
|
Loading…
Reference in New Issue