mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-14 14:24:05 +00:00
New methods
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15462 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -164,6 +164,10 @@ public:
|
|||||||
return operator=(H.Ty);
|
return operator=(H.Ty);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// getRawType - This should only be used to implement the vmcore library.
|
||||||
|
///
|
||||||
|
const Type *getRawType() const { return Ty; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void addRef();
|
void addRef();
|
||||||
void dropRef();
|
void dropRef();
|
||||||
|
@ -141,6 +141,10 @@ public:
|
|||||||
return true; // Values are always values.
|
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:
|
private:
|
||||||
/// FIXME: this is a gross hack, needed by another gross hack. Eliminate!
|
/// FIXME: this is a gross hack, needed by another gross hack. Eliminate!
|
||||||
void setValueType(unsigned VT) { SubclassID = VT; }
|
void setValueType(unsigned VT) { SubclassID = VT; }
|
||||||
|
Reference in New Issue
Block a user