mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Instancevar was renamed
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14428 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f6b7844101
commit
3d4bd5aa8d
@ -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…
Reference in New Issue
Block a user