mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-09 13:55:22 +00:00
Instancevar was renamed
llvm-svn: 14428
This commit is contained in:
parent
e7d0c7576f
commit
476eace8f4
@ -28,9 +28,8 @@ static inline const Type *checkType(const Type *Ty) {
|
||||
return Ty;
|
||||
}
|
||||
|
||||
Value::Value(const Type *ty, ValueTy vty, const std::string &name)
|
||||
: Name(name), Ty(checkType(ty)) {
|
||||
VTy = vty;
|
||||
Value::Value(const Type *ty, unsigned scid, const std::string &name)
|
||||
: SubclassID(scid), Ty(checkType(ty)), Name(name) {
|
||||
}
|
||||
|
||||
Value::~Value() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user