mirror of
https://github.com/RPCS3/llvm.git
synced 2025-03-06 09:39:28 +00:00
Adjust to user changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19886 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
454928eda4
commit
519ccafc18
@ -20,10 +20,9 @@ namespace llvm {
|
|||||||
|
|
||||||
class Constant : public User {
|
class Constant : public User {
|
||||||
protected:
|
protected:
|
||||||
inline Constant(const Type *Ty, ValueTy vty = Value::SimpleConstantVal,
|
Constant(const Type *Ty, ValueTy vty, Use *Ops, unsigned NumOps,
|
||||||
const std::string& Name = "")
|
const std::string& Name = "")
|
||||||
: User(Ty, vty, Name) {}
|
: User(Ty, vty, Ops, NumOps, Name) {}
|
||||||
~Constant() {}
|
|
||||||
|
|
||||||
void destroyConstantImpl();
|
void destroyConstantImpl();
|
||||||
public:
|
public:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user